所以我正在尝试创建一个jQuery移动应用程序,我遇到了一些问题。基本上我有两页。单击一个按钮后,我将改为第二页,如下所示:
{
$.mobile.changePage('/Event_WebService/barManagement.html', {
dataUrl : "/Event_WebService/barManagement.html?currentCityId="
+ currentCityId + "¤tBarId=",
reloadPage : true,
changeHash : true
})
在第二页上我在我的html中有这样的选择:
<select name="currentBarCategory" id="currentBarCategory"multiple="multiple" data-native-menu="false">
我动态填充选择。
问题是当我点击选择我的页面时重新加载并且我不知道如何阻止选择重新加载我的页面而且我不知道为什么要重新加载我的页面。