如何手动关闭jquery对话框?

时间:2017-11-10 02:48:27

标签: javascript jquery html jquery-ui jquery-ui-dialog

这是我的弹出窗口:

image

我使用javascript弹出一个弹出窗口,但我不知道如何关闭它,我已经创建了一个像[x]这样的关闭按钮,但我想在用户点击“#34; no"按钮,然后弹出窗口关闭。

这是我的javascript代码:

var popupDialogAll = function(title, url, w, h) {
    $.Dialog({
        width: "80%",
        height: "80%",
        padding: 10,
        shadow: true,
        title: title,
        draggable: true,
        btnClose: true,
        onShow: function(_dialog){
            var content = _dialog.children('.content');
            content.load(url);
        }
    });
};

这是我的观点:

<form id="form_email" accept-charset="utf-8" method="post">
  <button id="email" class="bg-orange fg-white" onclick="url(<?php $this->common->reminder($tiket);?>)">Yes</button>
  <button class="bg-orange fg-white">No!</button>
</center>
</form>

<script type="text/javascript">
$('#btnDone').click(function(reminder){
        $(this).parents(".popupDialogAll").dialog('close')
    });
    </script>

我不知道我必须做些什么&#34;否&#34;按钮

我尝试在我的no按钮中添加一个javascript函数,但它仍未关闭

0 个答案:

没有答案