JQuery-mobile 弹出/对话框?

发布于 2024-11-27 20:53:43 字数 303 浏览 1 评论 0原文

我正在使用 jquery 移动框架构建一个移动应用程序。我希望能够制作一个简单的对话框/弹出窗口,这样当您单击“问号”图片时,弹出窗口/对话框就会出现一条简单的消息。 我尝试了 http://jquerymobile.com/test/docs/pages 的不同方法/dialog-alt.html 到很多其他人。我无法让他们中的任何一个人工作。因此,如果您知道如何制作一个简单的弹出窗口或简单的对话框,请给我一个例子!

I am building an app for mobiles, using jquery mobile framework. I want to be able to make a simple dialog box/pop up, so that when you click on a picture of a "question mark" the pop up/ dialog box would appear with a simple message.
I have tried different approaches from http://jquerymobile.com/test/docs/pages/dialog-alt.html to so many others. I couldnt get non of them to work. So If you know how to make a simple pop up or a simple dialog box could you please give me an example!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一曲爱恨情仇 2024-12-04 20:53:43

如果你想在 jquery mobile 中打开一个对话框,你必须使用一个属性 data-rel="dialog" 并且 href 必须指向你的对话框所在的 URL:

<a href="http://jquerymobile.com/test/docs/pages/dialog-alt.html" data-role="button" data-rel="dialog">Open dialog</a>

这是一个 fiddle 这样你就可以看到它是如何工作的。
希望有帮助。

更新:

jQuery Mobile 对话框和某些设备似乎存在问题。
GitHub 存储库中存在一个未解决的问题
我发现这个插件似乎工作得很好。

If you want to open a dialog in jquery mobile you have to use an attribute data-rel="dialog" and the href must point to a URL where your dialog lives:

<a href="http://jquerymobile.com/test/docs/pages/dialog-alt.html" data-role="button" data-rel="dialog">Open dialog</a>

Here's a fiddle so you can see how it works.
Hope it helps.

UPDATE:

It seems there's a problem with jQuery Mobile dialog and some devices.
There's an issue open in the GitHub repository.
I've found this plugin which seems to work really well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文