怎么设置iframe的弹出层在最上面
答案:1 悬赏:60 手机版
解决时间 2021-03-20 13:15
- 提问者网友:杀手的诗
- 2021-03-19 17:49
怎么设置iframe的弹出层在最上面
最佳答案
- 五星知识达人网友:野慌
- 2021-03-19 18:31
function setDivCenter(id) {
showDiv(id, "1");
getO(id).style.left = (((parseInt(getWinSize()[0])) - parseInt(getO(id).offsetWidth)) / 2) + "px";
getO(id).style.top = (((parseInt(getWinSize()[1])) - parseInt(getO(id).offsetHeight)) / 2) + "px";
}
function getO(id) {
return document.getElementById(id);
}
function showDiv(id, type) {
if (getO(id) != null) {
var status = ("1" == type) ? "block" : "none";
getO(id).style.display = status;
}
}
function getWinSize() {
var width = parseInt(document.documentElement.clientWidth);
var height = parseInt(document.documentElement.clientHeight);
return new Array(width, height);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯