javascript中的alert函数被执行时,程序焦点会转移到该函数上,我想做个div弹出层取代alert的效果
1 回答
慕尼黑8549860
TA贡献1818条经验 获得超11个赞
可以使用jQuery UI插件
首先引入jQuery和插件js,
<link rel="stylesheet" type="text/css" href="jquery/ui/css/jquery-ui.css">
<script type="text/javascript" src="jquery/jquery-1.4.2.js"></script>
<script src="jquery/ui/js/jquery-ui.min.js"></script>
其中文件路径自己随意
然后调用显示代码:
$('#show_app_popup').dialog({
modal: true, //是否模态对话框
draggable : false,//是否可以拖拽
width: "auto", //自动宽度
height: "auto",//自动高度
position : "center" //居中
});
添加回答
举报
0/150
提交
取消