我正在使用 javascript、jquery 和 jquery mobile。我有这个:
$(document).ready(function() {
$("#routes").change(function(){
var newValue = $("#routes").val();
if(newValue != -1){
newLocation="http://localhost:8080/map.jsp?route="+newValue ;
window.location.href=newLocation;
}
});
});
但是 location.href 并没有重定向我。
有任何想法吗?
编辑:
我得到了这个并且它现在可以工作了,我现在的问题是 map.jsp 不会执行 .ready 事件:
$.mobile.changePage('/map.jsp', {
reloadPage: true,
type: "get",
data: 'route='+newValue
});