我已经定义了弹出 div,我想在某个事件上打开,而不是使用 href。我已经定义了弹出 div,例如:
<div data-role="popup" id="popupDialog" data-overlay-theme="a" data-theme="c" style="max-width:400px;" class="ui-corner-all">
<div data-role="header" data-theme="a" class="ui-corner-top">
<h1>Sample Page</h1>
</div>
<div data-role="content" data-theme="d" class="ui-corner-bottom ui-content">
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="c">OK</a>
</div>
</div>
我试着调用这个弹出 div
$("#popupDialog").popup;
$("#popupDialog").popup();
$("#popupDialog").popup("open");
他们都没有工作。任何建议。