重複の可能性:
別のページからモーダルフォームを閉じる方法
私は2つのページを持っています。最初のページから URL test.html でモーダル フォームを呼び出し、test.html ページからモーダル フォームを閉じたい href="#" onclick="">閉じる 次のコードを使用してモーダル ダイアログを開きます
$(document).ready(function()
{
$("#create-user").button().click(function()
{`enter code here`
$("#dialog-form").load('test.html').dialog({ modal:true, });
});
});