/**城市/日期搜尋**/ function cityDateSearch(cityName,type){ var cityValue = $( "#"+cityName ).val(); if(cityValue.length > 0){ $.ajax({ type: "POST", url: "/ajax/search_from_index.php", data:{ 'cityValue' : cityValue, 'sdateValue' : "", 'edateValue' : "", 'type' : type }, dataType: "json", cache: false, success: function(data) { location.href = data['websiteFolder']+"/search.php"; } }); }else{ alert("請填寫搜尋的內容!"); return false; } }