对话框中的链接会关闭对话框,并且不会在 JqueryMobile 中执行任何其他操作
我的对话框页面中的链接有问题。事实上,这些链接不起作用,它们会关闭对话框页面并执行其他任何操作。我在 http://jquerymobile.com/demos/ 查看演示1.0a2/#docs/pages/docs-dialogs.html 和对话框中的链接也不起作用。
你有什么想法来纠正这个问题吗?
谢谢。
I have a problem with links in dialog page. In fact, these links don't work, they close dialog page and do anything else. I look the demo at http://jquerymobile.com/demos/1.0a2/#docs/pages/docs-dialogs.html and links in dialog don't work either.
Have you any idea to correct that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
演示中的链接指向页面,因此它可能有效...但是当我使用 firebug 更改 href 时,它会执行相同的操作。看起来您在 jqm alpha2 中发现了一个错误。
但有好消息。该错误已修复。请参阅:
http://jquerymobile.com/test/docs/#pages/docs -dialogs.html
http://jquerymobile.com/test/docs 是从存储库生成的文档(每天左右)
Link in the demo points back to the page, so it might work... But when I change href with firebug it does the same. Looks like you found a bug in jqm alpha2.
But there's good news. The bug is fixed. See:
http://jquerymobile.com/test/docs/#pages/docs-dialogs.html
http://jquerymobile.com/test/docs is a version of docs generated from the repository (daily or so)
谢谢你。
但是此链接提供的javascript: http://jquerymobile.com/test/js/ 但这文件不完整(例如,它不包含 data-role="field-contain")。
但正如 Naugtur 所说,有好消息:
我在网上找到了解决方案:
在 jquerymobile.com 下载此文件的未压缩版本:jquery-mobile-1.0a2.js 并修改此文件:
替换行:
if( e.type == "click" && ( $(e .target).closest('[data-back]') || $(e.target).closest($closeBtn) ) ){
通过:
if( e.type == "click" && ( $(e.target).closest('[data-back]')[0] || this==$closeBtn[0] ) ){
和 :
$.mobile.activePage = this.element;
通过:
$.mobile.activePage = self.element;
这对我来说很有用。
Thanks for this.
But the javascript provided by this link : http://jquerymobile.com/test/js/ but this file is not complete (for example, it doesn't contain data-role="field-contain").
But like said Naugtur, there's good news :
I found on the internet the solution :
download the version uncompressed of this file : jquery-mobile-1.0a2.js at jquerymobile.com and modify this file :
Replace the line :
if( e.type == "click" && ( $(e.target).closest('[data-back]') || $(e.target).closest($closeBtn) ) ){
by :
if( e.type == "click" && ( $(e.target).closest('[data-back]')[0] || this==$closeBtn[0] ) ){
and :
$.mobile.activePage = this.element;
by :
$.mobile.activePage = self.element;
This works good for me.