我有一个 jQuery 弹出窗口,“x”没有出现在弹出窗口右上角的关闭框中。
我正在使用这个例子: https: //jqueryui.com/dialog/
我已经包含了链接和脚本(各两个)。
我的html是:
<div class="form-popup form-container autoScroll" id="myForm">
<table class="table table-hover table-bordered" id="riskTable">
<thead>
<tr>
<th>rkId</th>
<th>Risk Name</th>
<th></th>
</tr>
</thead>
<tbody id="riskTablebody">
</tbody>
</table>
</div>
我的 jQuery 是:
$(function() {
$('#updateRisk').click(function() {
$("#myForm").dialog({
title: "Select Risks",
width: 600,
modal: true,
resizable: true,
});
});
});
我希望它尽可能对用户友好,所以红色的“X”将是一个额外的奖励!
侃侃无极
慕姐4208626
相关分类