现在的位置: 首页 > 综合 > 正文

open window in center js code

2012年08月08日 ⁄ 综合 ⁄ 共 277字 ⁄ 字号 评论关闭
   function openWindow(url,width,height)
        {
        window.open(url,"_blank","height="+height+",width="+width+",top="+((screen.availHeight-height)/2)+",left="+((screen.availWidth-width)/2)+",toolbar=no,menubar=yes,scrollbars=yes, resizable=yes,location=no, status=no");
        } 

抱歉!评论已关闭.