我是jest参数传递到下一页。浏览器中的一些东西很好但在检查我的手机时有些代码没有用,所以任何人都告诉我代码中有什么问题。我很困惑.Code执行在浏览器上,但移动设备无法正常工作
$('#LEDList').append('<li " style="background-color: #DEDEDE;"><a href=" ../html/CustomerList.html?rono='+result.rows.item(i).firstname+'&roname=' +result.rows.item(i).lastname+ '" ></a></li>');
CustomerList.html显示,但Customer.js文件无法正常工作,但当我直接调用CustomerList.html时,Customer.js会没问题
请告诉我有关我的问题的任何想法
答案 0 :(得分:0)
jQuery mobile默认使用AJAX导航。这意味着CustomerList.html未完整加载。标记由AJAX加载,只有第一个带有data-role =“page”的DIV被加载到当前页面中。
因此,如果在标题中引用了customer.js,它将被忽略。在data-role =“page”div中移动引用,以便它也被加载,或者禁用AJAX导航。
http://demos.jquerymobile.com/1.4.5/navigation-linking-pages/