如何正确关闭此JQuery对话框?

时间:2015-05-29 10:38:39

标签: javascript jquery html dialog jquery-dialog

我绝对是JavaScript和JQuery的新手,我遇到了以下问题。

进入页面我有这个对话框:

<div id="dialogReject" title="">
    <table style="visibility: hidden;" id="rifiutaTable" border="0" class="standard-table-cls" style="width: 100%!important">
        <tbody style="background-color: #ffffff;">
            <tr>
                <td style="font: 16px Verdana,Geneva,Arial,Helvetica,sans-serif !important">Inserire note di rifiuto</td>
            </tr>
            <tr>
                <td>
                    <textarea style="visibility: hidden;" rows="5" cols="70" id="myRejectNote"></textarea>
                </td>
            </tr>
            <tr>
                <td>
                    <input class="bottone" readonly="readonly" type="text" value="Rifiuta" onclick="rifiuta()"/>
                </td>
            </tr>
        </tbody>
    </table>
</div>

我认为是由这个JQuery脚本创建的:

$(document).ready(function() {
    larghezza = '950px';
    lunghezza = '470px';
    lunghezza2 = '530px';
    $("#dialogReject").dialog({
         autoOpen: false,
         //width:'335px',
         width:'600px',
         modal: true,
         show: {        
             effect: "blind",
             duration: 500      
         },
         hide: { 
             effect: "blind",   
             duration: 500    
         }
     });
});

如您所见,此对话框包含由2个输入标记实现的2个按钮,这些按钮为:

<td style="text-align: right">
    <input class="bottone" readonly="readonly" type="text" value="Annulla" onclick="javascript:window.close()"/>

    <input class="bottone" readonly="readonly" type="text" value="Rifiuta" onclick="rifiuta()"/>
</td>

当用户点击 Annulla 按钮时,我希望该对话框已关闭。

实际上我试图使用 window.close()功能,但它无法正常工作。

我认为,为了实现这个对话框,我必须使用当用户使用 ESC 键盘按钮时执行的相同事件,该按钮用简单动画关闭对话框。

但我真的不知道怎么做。你能帮帮我吗?

TNX

3 个答案:

答案 0 :(得分:2)

尝试$("#dialogReject").dialog( "close" );

有关详情,请参阅https://api.jqueryui.com/dialog/

要绑定它,请更改

<input class="bottone" readonly="readonly" type="text" value="Annulla" onclick="javascript:window.close()"/>

<input id="closeDialog" class="bottone" readonly="readonly" type="text" value="Annulla"/>

并在$("#dialogReject").dialog({ [..your code..] });

之后添加此内容
$("#closeDialog").click(function(){
    $("#dialogReject").dialog( "close" );
})

答案 1 :(得分:1)

您必须在javascript文件中收听活动。

首先在关闭按钮上设置一个ID,我在这里使用#closeButton:

&#13;
&#13;
$(document).ready(function() {
    larghezza = '950px';
        lunghezza = '470px';
        lunghezza2 = '530px';
    $("#dialogReject").dialog({
                autoOpen: false,
                //width:'335px',
                width:'600px',
                modal: true,
                show: {        effect: "blind",        duration: 500      },
                hide: {        effect: "blind",        duration: 500      }

     });

    $("#closeButton").click(function(){
        $("#dialogReject").close();
    });

});
&#13;
&#13;
&#13;

答案 2 :(得分:1)

Alex和kaz给出了答案  $(&#34;#dialogReject&#34)关闭();

或者您也可以使用可以通过jquery创建的按钮

  buttons: {Rifiuta: funstion()
            {
            rifiuta()
            },
              Annulla: function() {
          $( this ).dialog( "close" );
        }

供参考: https://jqueryui.com/dialog/#modal-confirmation

    $( "#dialogReject" ).dialog({
 autoOpen: open,
            //width:'335px',
            width:'600px',
            modal: true,
            show: {        effect: "blind",        duration: 500      },
            hide: {        effect: "blind",        duration: 500      },
  buttons: {Rifiuta: funstion()
            {
            rifiuta()
            },
          Annulla: function() {
      $( this ).dialog( "close" );
    }
  }
});