現(xiàn)在有index,order,comment3個頁面。order點(diǎn)擊評論到comment,comment新增評論重定向到order?,F(xiàn)在想要comment重定向到order之后,order后退的時候不能又退回到comment頁面,直接退回到index頁面。jQuery(document).ready(function ($) { if (window.history && window.history.pushState) { window.onpopstate = function () { location.href = "index.aspx"; }; window.history.pushState('forward', null, "order.aspx"); }});在order使用history做的限制,當(dāng)在其他頁面點(diǎn)擊后退,好像會觸發(fā)order頁面的后退事件,直接從其他頁面退回到index了(ps:PC上沒有問題,手機(jī)會有該問題出現(xiàn)(微商城))。正確的應(yīng)該是其他頁面-order-index。求指教。
添加回答
舉報(bào)
0/150
提交
取消