窗体问题求解
在网页中如何实现点击一个按钮就弹出一个小型的窗体?希望大家帮帮忙
程序代码:
<a href=# onclick="window.open('aaa.htm','163','height=600,width=800,top=0, left=0,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no');"> click</a> function ShowDialog() { var iWidth=600; //模态窗口宽度 var iHeight=500;//模态窗口高度 var iTop=(window.screen.height-iHeight)/2; var iLeft=(window.screen.width-iWidth)/2; window.open('addManager.aspx',,'newwindow', 'Scrollbars=yes,Toolbar=no,Location=no,Direction=no,Resizeable=no, Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft+"') }