发布网友 发布时间:2022-04-23 09:19
共3个回答
热心网友 时间:2022-04-19 22:55
首先打开计算机,单击开始,然后在弹出的选项栏内找到“运行”选项并单击。
热心网友 时间:2022-04-20 00:13
说白了就是弹出层里面自定义表单嘛,看看layer吧!
热心网友 时间:2022-04-20 01:48
使用layer这个组件百度一下就可以实现这个功能
/*
参数解释:
title 标题
url 请求的url
id 需要操作的数据id
w 弹出层宽度(缺省调默认值)
h 弹出层高度(缺省调默认值)
*/
function x_admin_show(title,url,w,h){
if (title == null || title == '') {
title=false;
};
if (url == null || url == '') {
url="404.html";
};
if (w == null || w == '') {
w=($(window).width()*0.9);
};
if (h == null || h == '') {
h=($(window).height() - 50);
};
layer.open({
type: 2,
area: [w+'px', h +'px'],
fix: false, //不固定
maxmin: true,
shadeClose: true,
shade:0.4,
title: title,
content: url
});
}