如何在onclick上打开JQuery UI弹出窗口

前端之家收集整理的这篇文章主要介绍了如何在onclick上打开JQuery UI弹出窗口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有简单的html页面
<html>
<head>
<title></title>
</head>
<body>
  <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/redmond/jquery-ui.css" rel="stylesheet" type="text/css"/>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>


    <script type="text/javascript">
        $(document).ready(function () {
            $("#OpenDialog").click(function () {
                $("#dialog").dialog({modal: true,height: 590,width: 1005 });
            });
        });
    </script>
    <a id="#OpenDialog" href="#">Click here to open dialog</a>
    <div id="dialog" title="Dialog Title">
        <p>test</p>
    </div>

</body>
</html>

我需要隐藏弹出内容,当点击链接时打开一个对话框.

我的代码中出了什么问题?

谢谢!

解决方法

如果你想在$(“#OpenDialog”)中使用jQuery选择器,那么元素的id不应该包含#.click(

更改

<a id="#OpenDialog" href="#">Click here to open dialog</a>

<a id="OpenDialog" href="#">Click here to open dialog</a>
原文链接:https://www.f2er.com/jquery/178268.html

猜你在找的jQuery相关文章