js open() 与showModalDialog()方法使用介绍

时间:2024-02-09 12:04:48
【文件属性】:

文件名称:js open() 与showModalDialog()方法使用介绍

文件大小:21KB

文件格式:PDF

更新时间:2024-02-09 12:04:48

al ia js

此方法可通用,项目开发中经常要用到: 代码如下: //w:宽,h:高,url:地址,tag:标记 function showWin(w, h, url, tag) { var t = (screen.height – h) / 2; //离顶部距离 var l = (screen.width – w) / 2; //离左边距离 window.open(url, tag, “width=” + w + “,height=” + h + “,top=” + t + “,left=” + l + “,location=0”); } //路径地址,window对象,宽,高 function open


网友评论