我当前的页面是example.php
,当用户点击lisview中的项目时,我尝试刷新该页面,如
//
$.mobile.changePage( '#', {
type: "post",
data: {
data : dynamicValue
}
});
它在Chrome中运行良好但是当我在移动设备上测试它是错误的(双重刷新)和jquerymobile doc说changePage will be removed in 1.5.0
。
我尝试其他方式,如
$.mobile.pageContainer.pagecontainer("change", "#");
or $.mobile.pageContainer.pagecontainer("change", window.location.href);
但是这不起作用而且没有传递数据
我正在使用jquerymobile 1.4.0和jquery1.9
感谢
的最佳方式是什么?