js window open 打开页面并居中

1.js

  1. <script type="text/javascript">
  2. function openwindow(url,name,iWidth,iHeight)
  3. {
  4. // url 转向网页的地址
  5. // name 网页名称,可为空
  6. // iWidth 弹出窗口的宽度
  7. // iHeight 弹出窗口的高度
  8. //window.screen.height获得屏幕的高,window.screen.width获得屏幕的宽
  9. var iTop = (window.screen.height-30-iHeight)/2; //获得窗口的垂直位置;
  10. var iLeft = (window.screen.width-10-iWidth)/2; //获得窗口的水平位置;
  11. window.open(url,name,‘height=‘+iHeight+‘,,innerHeight=‘+iHeight+‘,width=‘+iWidth+‘,innerWidth=‘+iWidth+‘,top=‘+iTop+‘,left=‘+iLeft+‘,toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no‘);
  12. }
  13. </script>

2.调用方法

  1. <a href="javascript:void(0);" onclick="javascript:openwindow(‘a.html‘,‘‘,400,200);">转到a</a>

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

原文地址:https://www.cnblogs.com/skinchqqhah/p/10351603.html

时间: 2024-10-11 09:07:25

js window open 打开页面并居中的相关文章

js window.open打开新页面

js中window.open打开一个新的页面,其实它的参数有很多. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/ht

js window.open打开新窗口原页面出现[object window]解决办法

解决方法: 1.<a href="javascript:window.open('about:blank','_blank');void(0);">ddd</a>只需要在href中加入void(0);即可2.<a href="#" onclick="window.open('about:blank','_blank')">ddd</a> window.open()函数说明: 函数原型:window.

js window.open()打开的页面关闭后刷新父页面

function test(){ var winObj = window.open(URL); var loop = setInterval(function(){ if(winObj.closed){ clearInterval(loop); parent.location.reload(); } },1); }

js window.open 打开新窗体 参数设置

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>    <meta http-equiv="Content

node.js 配置首页打开页面

/*var http = require('http');var fs = require('fs');var url = require('url'); var http = require("http");http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.write(

js window.open()弹出窗口参数说明及居中设置

window.open()可以弹出一个新的窗口,并且通过参数控制窗口的各项属性. 最基本的弹出窗口代码 window.open('httP://codeo.cn/'); window.open()各参数详解 示例代码: window.open('httP://codeo.cn/', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no, loc

Js打开网页后居中显示

使用JavaScript定义打开网页后居中显示,并可为窗口设置大小,使用“window.open”方法打开新窗口:先来看完整的代码及调用方法: <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>打开居中的窗口</title> <script language="javascript"> //参数-url:要打开的网站,winname:打开后

JS通过设置cookie来控制弹出层,首次打开页面显示弹出层

<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>JS通过设置cookie来控制弹出层,首次打开页面显示弹出层,刷新页面不再显示:关闭浏览器重新打开.清除缓存cookie显示.</title&

用window.showModalDialog()打开的页面Request.UrlReferrer为null

今天在解决一个问题,怎么也找不到解决方案.我的一个窗体是IE通过window.showModalDialog()打开的,但为了防止用户手工输的地址,所以我需要判断是通过别的页面调整获得,用Request.UrlReferrer判断,在IE下其值却为null,chrome是正确的,在IE下每次打开页面都提示重新登录,这我就郁闷了,我搜索了很多文档,又说location.herf打开的页面Request.UrlReferrer==null,却很少提window.showModalDialog()打开