如何在页面加载时加载jQm模式?

发布于 2024-08-29 09:39:46 字数 374 浏览 9 评论 0原文

您好,我正在使用 jQm Window 加载模式窗口。

http://dev.iceburg.net/jquery/jqModal/#how

我我正在尝试,

jqmShow
    Show jqModal element(s).

    $('#dialog').jqmShow();
    $('.dialogs').jqmShow();

但它会抛出一些 JS 错误,

但它不会在页面加载时加载,请指导我同样的事情。

TIA

Hi I am using jQm Window to load modal window.

http://dev.iceburg.net/jquery/jqModal/#how

i am trying to

jqmShow
    Show jqModal element(s).

    $('#dialog').jqmShow();
    $('.dialogs').jqmShow();

but it throws some JS error,

but it does not load on the page load, please guide me for the same.

TIA

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

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

发布评论

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

评论(2

古镇旧梦 2024-09-05 09:39:46

说真的,为什么你一定要让自己的生活变得复杂呢?只需在页面上放置一个隐藏的 div,像这样浮动在中心

<div style="position: absolute; top:50%; left:50%;" hidden="true" id="Messagee">
//Your Message or Html Here
</div>

,然后当您需要显示它有一个功能时,

$("#Message").html("<p>My Message</p>"); 
$("#Message").show(); 

您不需要一个疯狂的 javascript 模块来执行模态,您真的可以让您的生活变得轻松。哦,如果你想要一些不错的效果,请使用 $("#Message").fadeIn(500);反而!

Seriouly why do you have to make life complicated for yourself? Just put a div on your page that is hidden that floats in the center like this

<div style="position: absolute; top:50%; left:50%;" hidden="true" id="Messagee">
//Your Message or Html Here
</div>

and then when you need to show it have a function that does

$("#Message").html("<p>My Message</p>"); 
$("#Message").show(); 

You don't need a crazy javascript module that does modals, you can really make your life easy. Oh and if you want some nice effects use the $("#Message").fadeIn(500); instead!

风苍溪 2024-09-05 09:39:46

我得到了答案,使用 jqmShow() 非常简单;

$('#alert-box').jqm({ajax: 'alert-note.html' , modal:true});
$('#alert-box').jqmShow();

:)

谢谢大家的帮助。

I got the answer , it was quite easy using jqmShow();

$('#alert-box').jqm({ajax: 'alert-note.html' , modal:true});
$('#alert-box').jqmShow();

:)

thank you all for the help.

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