document.write('<p id="ContainerPanel" style="display:none;"><p id="calendarPanel" style="position: absolute;display: none;z-index:3;'); document.write('background-color: #FFFFFF;border: 1px solid #CCCCCC;width:175px;font-size:12px;margin-left:25px;"></p>'); |
if(document.all){ document.write('<iframe id="completionFrame" style="position:absolute;z-index:2;display:block;" scrolling="no" frameborder="no">121212</iframe>'); } document.write('</p>'); |
//存在iframe说明在IE浏览器下,设置iframe遮盖层的宽高,位置属性赋值 if(this.getElementById("completionFrame")){//存在iframe的话 var iframeWidth = $('#calendarPanel').css('width');//日历的宽度 this.iframe = this.getElementById("completionFrame"); this.iframe.style.left = "";//获取弹出层的坐标后赋值给iframe this.iframe.style.top = ""; this.iframe.style.width = iframeWidth;//同理,赋值宽高 this.iframe.style.height = ""; } |