我有这个链接:
<a rel="external" href="/feed/123/#comment">comment</a>
当我转到该页面时,会发生以下情况:
- 浏览器将我带到锚点,但片刻后我又回到顶部。我试过这个:
$(window.document).bind("mobileinit", function() {
$.mobile.ajaxEnabled = false;
$.mobile.hashListeningEnabled = false;
$.mobile.changePage.defaults.changeHash = false;
$.mobile.pushStateEnabled = false;
});
所以,这些都没有帮助。我还尝试在pagecreate
活动中做类似的事情window.location.href = window.location.hash
。那没起效。
任何人都可以对这个谜团有所了解吗?