最赞回答 / 酷睿N核
else if(score==null||score<0) { alert=prompt("请重新输入"); } 你这步将重新输入的值赋值给了变量 alert,当然就没办法再用 if 语句判断变量 score 的值了哦!
2019-01-15
最新回答 / weixin_慕沐9449872
<input name="button" type="button" onClick="openUrl()" value="输入框内容" />替换掉“输入框内容”,把这行代码写入body部分试试。
2019-01-11
最赞回答 / 慕九州4215743
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html"/> <script type="text/javascript"> function openWindow() { var operation=confirm("ot...
2019-01-11
最赞回答 / DarkMatterr
没问题啦<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" Content="text/html; charset=utf-8" /><title>javascript</title><style type="text/css">body{font-size:px;}#txt{ height:400px; width:600px; ...
2019-01-08
最新回答 / 慕圣514155
一、改为onclick="init()",onclick="init1()",onclick="init2()",onclick="init3()",onclick="init4()"二、函数init3()(显示内容的方法),你针对id=four的p标签进行操作,但是它本来就是显示的,你可以改为 var four1 = document.getElementById("three"); 在对id为three的p标签进行隐藏后在使用这个按钮就可以显示内容了...
2019-01-05
最新回答 / 木子955
<script>var answer = confirm("是否要打开新窗口?");var newHeight = window.screen.height/2;var newWidth = window.scree.width/2;if(answer){ window.open("http://www.imooc.com","_blank","width=newWidth,height=newHeight");}</script>
2019-01-04
最新回答 / showmylifeqwe11
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openWindow(){ // 新窗口打开时弹出确...
2019-01-04
最新回答 / qq_慕运维4425125
你前面不是定义了一个参数 :bar1 吗?它接收的参数就是用户输入框里面的内容啊,用户没有输入就是你默认的地址,用户修改了你默认的地址,它传回来的参数就是用户修改后的地址。所以你可以这么写:window.open(bar1,'_blank') 这样就可以了。
2018-12-31