老版本浏览器使用的“模态”窗口

1 function newCydz(){
2     window.showModalDialog('open_cydz.html','','dialogWidth=420px;dialogHeight=350px;scroll=no;status=no;help=no;');
3 }

效果和用JS写的Dialog一样,但是是一个新开窗口页面,展现效果可能木有JS写的好看,但是在低版本浏览器上性能是木有问题的。

 

由于showModalDialog缓存严重,下面是在子窗口取消客户端缓存的设置.也可以在服务器端取消缓存

1 <meta http-equiv="Expires" CONTENT="0">
2 <meta http-equiv="Cache-Control" CONTENT="no-cache">
3 <meta http-equiv="Pragma" CONTENT="no-cache">

 

 

posted @ 2012-07-05 10:37  小猩猩君  阅读(197)  评论(0编辑  收藏  举报