繁体   English   中英

jQuery UI Modal弹出窗口在按钮上单击

[英]jQuery UI Modal Popup Window on Button Click

我尝试从Jquery网站运行一些示例,并查看一些视频,但似乎我无法正确执行它们。 这是我的代码:

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
        <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
        <script type="text/javascript">
            $(function() {
                $("#btnclick").click(function() {
                    $("#divpopup").dialog({
                        title: "blabla",
                        width: 430,
                        height: 200,
                        modal: true,
                        buttons: {
                            Close:
                            function() {
                                $(this).dialog('close');
                            }
                        }
                    });
                });
            })
        </script>
    </head>
    <body>
        <div id="divpopup" style="display:none">
        blablablabla
        </div>
        <button type="button" id="btnclick">Click me</button>
    </body>
</html>

我找不到问题所在,唯一的可能是我没有输入重要的库或其他内容。 我的每个浏览器都会向我显示该按钮,但是单击它不会触发模式窗口。 有任何想法吗?

谢谢

jQuery库引用应按以下顺序。

 <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
 <script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

暂无
暂无

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

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