DIV+CSS+JS 회색 팝 업 층
2938 단어 팝 업 층
'+sTitle+ ((bCancel)? '':'')+ '
' + sHTML; dg.innerHTML = sHTML; var dbg = document.createElement("div"); dbg.id = "nd-bdg"; dbg.className = "neat-dialog-bg"; var dgc = document.createElement("div"); dgc.className = "neat-dialog-cont"; dgc.appendChild(dbg); dgc.appendChild(dg); //adjust positioning if body has a margin if (document.body.offsetLeft > 0) dgc.style.marginLeft = document.body.offsetLeft + "px"; document.body.appendChild(dgc); if (bCancel) document.getElementById("nd-cancel").onclick = function() { window.neatDialog.close(); }; this.elt = dgc; window.neatDialog = this; } } NeatDialog.prototype.close = function() { if (this.elt) { this.elt.style.display = "none"; this.elt.parentNode.removeChild(this.elt); } window.neatDialog = null; } function openDialog(){var sHTML='
지금 보 이 는 것 은 층 창 입 니 다.JS 에 의 해 제어 되 어 팝 업 됩 니 다.www.jb51.net우리!
'+'를 닫 습 니 다.new NeatDialog(sHTML,"어서 오 세 요!"false); }