最赞回答 / 慕先生050283
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow() { var message...
2019-03-01
这里可以改一下了,<script type="text/javascript">标签里面的type="text/javascript"可以不需要写了
2019-03-01
最新回答 / jasonsang
<!DOCTYPE html><html> <head> <title> new document </title> </head> <script> function openWindow() { var open = confirm(); if(open==true)// 新窗口打开时弹出确认框,是否打开 { var url=prompt("通过...
2019-02-28
最新回答 / 慕神0996557
隐藏/显示内容的那两个函数,obj.style.display,display这个地方单词拼错了。然后整体代码运行不了是因为你最后一段那个取消设置的函数里面有个地方的符号是中文,你把那段代码复制到控制台试试就晓得了,会显示invaid token的,我复制进去试了下,是因为var message=confirm("确认要取消设置吗");这个地方末尾分号你是在中文输入法下打出来的,导致后面都运行不了。你仔细对比下其他地方的分号就能看出来了
2019-02-28
已采纳回答 / qq_玛雅小萨_0
你打开新窗口时写错了,应该是
window.open(url, "_blank", "width=400,height=500,menubar=no,toolbar=no")
2019-02-28
最新回答 / 陈氏乐哥
数组的话要用document.getElementsByclassName("class名");来获取,这样可以得到所有该类名的元素,而且是一个伪数组,同样具有数组的下标,可以通过循环的方法完成你说的一次执行多个的操作
2019-02-28
已采纳回答 / 慕桂英0359397
function openWindow() { var open=confirm("确认打开新建窗口吗?"); if(open==true){ var url=prompt("确认打开的窗口","http://www.imooc.com/"); if(url!=null) {window.open(url," _blank",width=400,height=500,menubar="no",toolbar="no");} } e...
2019-02-27