禁止在 JQuery 消息框外单击
Disable click outside of JQuery message box
我想禁用我的外部后台,在Jquery消息框中查看,编码如下示例。请给我一个解决方案。
谢谢。
<script src="js/bootstrap.min.js"></script>
@if (TempData["SuccessEdit"] != null)
{
<script>
$(function () {
$("#green").dialog();
});
</script>
}
<div id="green">
<p>Successully Updated</p>
</div>
只需在初始化中给出 modal: true
:
$(function () {
$("#green").dialog({
modal: true
});
});
我想禁用我的外部后台,在Jquery消息框中查看,编码如下示例。请给我一个解决方案。 谢谢。
<script src="js/bootstrap.min.js"></script>
@if (TempData["SuccessEdit"] != null)
{
<script>
$(function () {
$("#green").dialog();
});
</script>
}
<div id="green">
<p>Successully Updated</p>
</div>
只需在初始化中给出 modal: true
:
$(function () {
$("#green").dialog({
modal: true
});
});