function showDelTaxpayer(x,y,strHtm,id,width,height){
var elm = document.getElementById(id);
if(!elm){
elm = document.createElement("div");
elm.id = id
document.body.appendChild(elm);
}
elm.style.position = 'absolute';
elm.innerHTML = strHtm;
elm.style.zIndex = 30;
elm.style.background = '#fff';
elm.style.width = width + 'px';
elm.style.height = height + 'px';
elm.style.left = x + 'px';
elm.style.top = y + 'px';
elm.style.display='';
}
function closeOrDelTaxpayer(id){
var elm = document.getElementById(id);
if(elm){
elm.style.display='none';
document.body.removeChild(elm);
}
}
jsp页面弹出div样式
最新推荐文章于 2020-02-14 17:24:39 发布