有没有办法调用重定向其他页面的java脚本函数
网址如“www.test.com”
function test
{
$mobile.navigate("Search.php");
}
我如何从android..it调用java脚本函数不起作用所以请帮助我。
答案 0 :(得分:0)
使用:
window.location.href = 'https://www.google.com';
代替$mobile.navigate("Search.php");
您也忘了在功能
中添加()
function test()
{
window.location.href = 'https://www.google.com';
}
选中new Format进行移动导航。
检查this JSFiddle。
修改强> 导入您最新的jquery mobile js
<script src="js/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script>
<script>
var jq = jQuery.noConflict();
</script>
<script src="js/jquery.mobile-1.3.1/jquery.mobile-1.3.1.min.js" type="text/javascript" charset="utf-8"></script>
在js中使用:
jq.mobile.changePage("Search.php");
而不是
$.mobile.changePage("Search.php");