码迷,mamicode.com
首页 > Windows程序 > 详细

js弹出window.open窗口

时间:2018-04-19 14:01:12      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:lang   fun   llb   script   func   tool   class   menu   窗口   

<html> 
<head> 
<SCRIPT LANGUAGE="JavaScript"> 
function openwin() 
{OpenWindow=window.open("", "newwin", "height=250, width=250,toolbar=no,scrollbars="+scroll+",menubar=no"); 
//写成一行 
OpenWindow.document.write("<TITLE>例子</TITLE>") 
OpenWindow.document.write("<BODY BGCOLOR=#ffffff>") 
OpenWindow.document.write("<h1>Hello!</h1>") 
OpenWindow.document.write("New window opened!") 
OpenWindow.document.write("</BODY>") 
OpenWindow.document.write("</HTML>") 
OpenWindow.document.close()} 
</SCRIPT> 
</head> 
<body> 
<a href="#" onclick="openwin()">打开一个窗口</a> 
<input type="button" onclick="openwin()" value="打开窗口"> 
</body> 
</html>

js弹出window.open窗口

标签:lang   fun   llb   script   func   tool   class   menu   窗口   

原文地址:https://www.cnblogs.com/nizuimeiabc1/p/8881566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!