我目前正在研究一個簡單的ipad webapp測試片,並陷入了一個簡單的switch語句,它不會以某種方式工作; 我想根據javascripts window.location字符串格式化元素。這可能令人尷尬難以解決;但我莫名其妙地沒有得到它: 還是有什麼特別的window.location?與window.location字符串的Javascript開關問題
$(document).ready(function() {
path_c = window.location;
switch (path_c){
case "http://192.168.1.37/ryba_testground/":
$('#menu-item-22').addClass('current_page_item');
alert(path_c);
break;
case "http://192.168.1.37/ryba_testground/?page_id=7":
$('#menu-item-21').addClass('current_page_item');
break;
case "http://192.168.1.37/ryba_testground/?page_id=9":
$('#menu-item-20').addClass('current_page_item');
break;
case "http://192.168.1.37/ryba_testground/?page_id=11":
$('#menu-item-19').addClass('current_page_item');
break;
}
});
THX!
是的,它是一個宿主對象。試試谷歌可能幫助過的'window.location.href' – Bergi
!也是一個調試器..... – mercsen