我的 jQuery 移动弹出标题与内容的大小不同。
jQuery 1.8.3 和 jQuery 移动版 1.2.0。
<div data-role="popup" id="commentPopup" style="width: 800px;" class="ui-corner-all">
<div data-role="header" data-theme="b" class="ui-corner-top">
<h1>Please enter your comment</h1>
</div>
<div data-role="content" data-theme="b" class="ui-corner-bottom ui-content">
<textarea></textarea>
<a href="#" data-role="button" data-inline="true" id="okComment" data-theme="a">OK</a>
<a href="#" data-role="button" data-inline="true" data-rel="back" data-theme="a">CANCEL</a>
</div>
</div>
有关信息,我用$('#commentPopup').popup("open");
.
打开弹出窗口时是否可以禁用滚动?是否可以防止用户在单击页面的另一个位置时关闭弹出窗口?
谢谢