我目前正在研究一个简单的 ipad webapp 测试件,并陷入了一个无法以某种方式工作的简单 switch 语句;我想根据 javascripts window.location 字符串格式化元素。解决起来可能很尴尬;但我不知何故不明白:或者window.location有什么特别之处吗?
$(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;
}
});
谢谢!