标签: javascript jquery-mobile
我有这个功能:点击:function() { $.mobile.changePage('#Page');}点击一个列表元素后,点击我需要回到原来的位置,无论函数在哪里被调用。有点像$.mobile.changePage(back); 提前谢谢。
function() { $.mobile.changePage('#Page');}
$.mobile.changePage(back);
答案 0 :(得分:0)
如果你想做的就是回到历史上一页; history.go(-1);应该这样做。
history.go(-1);