アラートに到達して機能しますが、close メソッドが機能しません。理由はありますか?
私のJavaScript:
var myDialog = $('#divContactUs');
myDialog.dialog({
autoOpen: false,
title: "Send Us A Note:",
modal: true,
buttons: [{
id: "btn-send",
text: "Send",
click: function () {
// you can now use the reference to the dialog
myDialog.dialog("close");
alert('test');
}
}]
});
});
そして私のhtml:
<div id="divContactUs" style="display:none">
Name:   <input type="text" name="Name" /><br />
Email:   <input type="text" name="Email" /><br />
Phone:   <input type="text" name="Phone" /><br />
Message:<br />
<textarea name="Message"></textarea>
</div>