如果它第一次訪問該站點並且沒有添加任何查詢或者只有一個查詢字符串連接到URL'hos',如http://hospitalsite/events/Pages/default.aspx?hos=somevalue,那麼我需要應用if條件..the else條件正在fine..How我檢查,看看是否有一個查詢jquery檢查URL是否有查詢字符串
$(".hospitalDropDown").change(function(e){
currentURL=$(location).attr('href');
if((currentURL == 'http://hospitalsite/events/Pages/default.aspx' or (....)) {
window.location.href= 'http://hospitalsite/events/Pages/default.aspx'+'?hos='+$(this).val();
} else {
window.location.href = ($(this).val() == "All Hospitals") ? 'http://hospitalsite/events/Pages/default.aspx': currentURL +'&hos='+ $(this).val();
}
});