当我点击一个按钮时我会显示一个对话框
在我的 js 部分,我有
$('#dialog').dialog({
autoOpen: false
});
$('#create-report').click(function() {
$('#dialog').dialog('open');
});
在我的 html 部分我有
<div id="dialog" title="Basic dialog" style="visibility:hidden;">
<p>hi how are you</p>
</div>
<button id="create-report" >Create new report</button>
什么都没有显示,我没有任何错误
为什么?