mobilebone
mobilebone copied to clipboard
JS中如何做跳转?
三个页面,A,B,C
A->B->C or A->C
C页面是一个表单页面,期望的是:
点C中的保存按钮,提交保存成功后,自动跳转回A页面
请问如何实现呢? Mobilebone.transition? Mobilebone.transition(page_in, document.querySelector(".in." + Mobilebone.classPage), false, { id: hash, history: false, container: null });
十分感谢,另外感谢MobileBone,为项目省劲不少呢。
Mobilebone.transition? 可能是使用方式不对,第一次能切换到A,下次再也进不到C页面了。
临时用了这个方法,设置一个为display:none
$("#anchorHome").trigger("click");
$("#anchorHome").on("click", function (e) {
Mobilebone.handleTapEvent(e);
})