如果jqueryui对话框div内容更改为原始内容,则表单正在运行HTML表单默认操作

时间:2017-03-09 16:10:29

标签: javascript jquery html jquery-ui

我在jqueryui对话框中显示html表单,我正在使用jquery验证插件来验证它。

问题 - 当我通过将内容更改为原始提交表单时,默认表单操作正在运行。

只有在关闭表单之前将html内容更改为原始内容时才会发生。

这是我的代码:

$(document).ready(function() {

  var getOldForm = $("#send-pm-win").html();

  $("#pmLink").click(function() {

    $("#send-pm-win").dialog({

      modal: true,

      draggable: false,

      resizable: false,

      autoOpen: true,

      buttons: [{

        text: "Cancel",

        click: function() {

          $(this).dialog("close");

        },

        style: "outline: none;"

      }],

      close: function(event, ui) {

        $("#send-pm-win").html(getOldForm);

        $(this).dialog("destroy");

      }

    });

  });

});

0 个答案:

没有答案