简体   繁体   English

试图在 $(document).ready 上显示 jqModal 对话框

[英]Trying to show a jqModal dialog on $(document).ready

I'm adapting a jqModal script to launch in an onLoad fashion using the $(document).ready method, but I'm getting something wrong somewhere.我正在调整 jqModal 脚本以使用$(document).ready方法以 onLoad 方式启动,但我在某处遇到问题。 I'm new to stackoverflow, and I smell brains all over this place.我是stackoverflow的新手,我在这个地方闻到了大脑的味道。 (Wish I was one of them.) The full page code (relatively short) can be seen by viewing the source of this URL: http://www.caycecookbook.com/pop_ups/jqm_onDocReady/jqm_docReady.html (Wish I was one of them.) The full page code (relatively short) can be seen by viewing the source of this URL: http://www.caycecookbook.com/pop_ups/jqm_onDocReady/jqm_docReady.html

The short end of the code looks like this:代码的短端如下所示:

<script type="text/javascript"> 
    $(document).ready(function() {
        $('#rename').jqm();
    });
</script> 
<!-- POP-UP DIV -->
<DIV class="jqmWindow" id="rename" style="padding:18px 0px 12px 0px;">
    <TABLE align="center" width="500" border="0" cellspacing="0" cellpadding="0" bgcolor="#7777777">
        <TR><TD align="center"><P style="margin: 12px 12px 12px 12px;">
<img src="images/hey_there.jpg" width="504" height="360"  border="0"></p></td></tr>
        <TR><TD align="center" valign="middle">
            <P style="margin:6px 0px 0px 0px;">
                <a href="#" class="jqmClose" style="text-decoration:none; color:#ffffff;; 
font-family: arial, helvetica, verdana, sans-serif; font-size:12px; 
font-weight:bold;">Close</a>
            </p>
        </td></tr>
    </table>
</div>

Any help on this would be much appreciated.对此的任何帮助将不胜感激。

You never call jqmShow to show the dialog.您永远不会调用jqmShow来显示对话框。 You only initialize its parameters with jqm .您只需使用jqm初始化其参数。

Ref: http://dev.iceburg.net/jquery/jqModal/#how参考: http://dev.iceburg.net/jquery/jqModal/#how

Update更新

Here is the requested code example:这是请求的代码示例:

<script type="text/javascript"> 
    $(document).ready(function() {
        $('#rename').jqm();
        $('#rename').jqmShow(); // This is the line you need to add.
    });
</script> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM