单击按钮时出现jquery对话框

时间:2012-11-27 20:23:36

标签: jquery jquery-ui

我正在尝试通过按钮单击启动jquery对话框但似乎没有工作。任何帮助将不胜感激:

    $('#wrapper').dialog({
        autoOpen: false,
        title: 'Basic Dialog'
    });
    $('#opener').click(function() {
        $(this).dialog('open');
        return false;
    });
    
    
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js"></script>
<button id="opener">Open the dialog</button>
    <div id="wrapper">
    <p>Some txt goes here</p>
    </div>

谢谢!

2 个答案:

答案 0 :(得分:8)

这一行

$(this).dialog('open');  // this here corresponds to the #opener div

应该是

$('#wrapper').dialog('open');

还有额外的大括号}); ..如果这是 DOM 就绪处理程序

的右大括号,可以忽略

<强> Check Fiddle

答案 1 :(得分:2)

确保您正在引用jQuery和jQueryUI库,如下面的示例所示。

试试这个:

<html>
    <head>
        <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
        <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
        <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/themes/smoothness/jquery-ui.css" rel="stylesheet" type="text/css" media="all" />

        <script type="text/javascript">
            $(document).ready(function() {

                $('#wrapper').dialog({
                    autoOpen: false,
                    title: 'Basic Dialog'
                });
                $('#opener').click(function() {
                    $('#wrapper').dialog('open');
//                  return false;
                });
            });
        </script>
    </head>
<body>

<button id="opener">Open the dialog</button>
<div id="wrapper">
    <p>Some txt goes here</p>
</div>