使用jquery实现模态框(alert弹出层)
程序员文章站
2022-05-28 22:30:35
...
弹出层外框样式:
注:只提供了弹出层外框样式
.alert-content{
width:970px;
height: 560px;
position: absolute;
top: 10px;
left:calc(50% - 500px);//弹出框相对屏幕居中
background:#fff;
box-shadow: 5px 5px 5px 5px #999;
color:#666;
border:1px solid #f8f8f8;
border-radius:2px;
}
js代码:
var alertcontent ="<div class='alert-content'><div class='msy-top'>选择人员<button class='si si-com_error-49' onclick='closealert()' style='color:black;background-color:white;border:0px solid red;float:right;'></button>\
</div><div class='msg-content'><div class='msg-content-check'><table id='table1'><tr id='tr1'><td id='inputname'><input placeholder=' 姓名'>\
</td><td id='inputzj'><select><option>身份证</option>\
<option>身份证</option>\
<option>身份证</option>\
<option>身份证</option>\
</select>\等等......</div>"
//弹出方法
function alert(e) {
$('main').append(alertcontent)//在main内部结尾处添加模态框,利用上述css代码改变位置
}
//关闭弹出层
function closealert(){
$('.alert-content').remove()
}
上一篇: Python爬虫入门(一)——搭建环境
下一篇: jQuery消息框弹出效果
推荐阅读
-
jQuery点击弹出层弹出模态框点击模态框消失代码分享
-
使用jQuery将多条数据插入模态框的实现代码
-
整理:手机端弹出提示框,使用的bootstrap中的模态框(modal,弹出层),比kendo弹出效果好
-
使用jquery实现模态框(alert弹出层)
-
jQuery点击弹出层弹出模态框点击模态框消失代码分享
-
使用jQuery将多条数据插入模态框的实现代码_jquery
-
使用jQuery将多条数据插入模态框的实现代码
-
jQuery+HTML5实现弹出创意搜索框层
-
使用jQuery将多条数据插入模态框的实现代码_jquery
-
jquery封装了一个简洁轻巧的可拖动可自定义样式的纯div+css带遮罩层的仿模态弹出框_html/css_WEB-ITnose