Events 在jquery mobile上触发单击链接不工作

Events 在jquery mobile上触发单击链接不工作,events,jquery-mobile,click,Events,Jquery Mobile,Click,我尝试通过.trigger函数触发链接,但不起作用 <a data-role="button" id="redirectprofile_btn" href="profile.html" rel="external" style="display:block;">Profile</a> 它不会重定向 我是jquerymobile的新手,任何帮助都会很好 谢谢使用event.prevent default后跟event.stopImmediateProposition,然后

我尝试通过.trigger函数触发链接,但不起作用

<a data-role="button" id="redirectprofile_btn" href="profile.html" rel="external" style="display:block;">Profile</a>
它不会重定向

我是jquerymobile的新手,任何帮助都会很好


谢谢

使用event.prevent default后跟event.stopImmediateProposition,然后将页面更改为links href attr值

为什么要触发点击?使用changePage函数。对于jQM 1.3$.mobile.changePageprofile.html。对于jQM 1.4$.mobile.pageContainer.pagecontainerchange,profile.html;profile.html有一个css文件,它与第一个pagge index.html冲突。如果我使用pagecontainer.change,那么您需要的是window.location.href=profile.html;。
 $("#redirectprofile_btn").click() or $("#redirectprofile_btn").trigger('click'),