成事不足先生
2020-07-31 10:09
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>单击事件 </title><script type="text/javascript"> function openwin() { window.open(' </script></head><body> <form> <input name="点击我" type="button" value="点击我" onclick= "openwin()"/> </form></body></html> <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>window.open</title> <script type="text/javascript"> function Wopen(){ window.open('http://www.baidu.com','_blank','width=1366,height=768,menubar=yes,toolbar=yes, status=yes,scrollbars=yes') ; } </script></head><body><form> <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!"> </form></body></html>
因为_blank是从新窗口打开
第一段代码是不是少了 第二段代码window.open给了_blank属性 是从新窗口打开 好像是吧
JavaScript进阶篇
468062 学习 · 21891 问题
相似问题