不发生任何转换的 jQueryMobile 属性
jQueryMobile 中是否有任何属性可以指定 jQueryMobile 不进行任何转换?
就我而言,它是 data-role="header" 内的锚点。
谢谢。
Is there any attribute in jQueryMobile where I can specify that I don't to occur any transformation by jQueryMobile?
In my case it's an anchor inside data-role="header".
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果是 jQuery Mobile“应用程序”之外的链接,可以在链接的
标记中添加
rel="external"
属性,以防止 jQuery Mobile 劫持点击它。If it's a link outside the jQuery Mobile "application", you can add a
rel="external"
attribute to the link's<a>
tag to prevent jQuery Mobile from hijacking clicks on it.我使用的解决方案是将
anchor
包装在span
或div
内。The solution I used was wrapping the
anchor
inside aspan
ordiv
.