我正在使用 jqModal 创建一个使用 ajax 的模式窗口,其中包含要填写的表单。父窗口只包含大约半页数据,因此不包含滚动条。模态窗口加载时,窗体溢出页面,底部不可见。在需要时创建包含滚动条的模态窗口或将滚动条添加到父窗口以便整个模态可以上下滚动的最佳方法是什么?代码如下:
Javascript:
$(document).ready(function () {
$("#AddGameTypeWindow").jqm({
ajax: '/maintenance/AddGameType.html',
modal: true,
trigger: "#NewGameTypeButton"
});
});
HTML:
<body>
<div id="AddGameTypeWindow" title="Add Game Type" style="display:none"></div>
<div id="AddLocationWindow" class="jqmWindow" style="width:640px;height:480px"></div>
<table>
<tr>
<td>Game Type</td><td><select id="GameType"><option value="0"></option></select> <button id="NewGameTypeButton" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-plus"></span></button></td>
</tr>