最赞回答 / 彩虹蜗牛
是JavaScript中的语法通过元素的ID特性来获取元素例如有du入下元素:&/&ginput type="text" id="button1" value="Click Me"/&e的时那么当调用zhidocument.getElementById("button1").Value的时候,返回的就是"Click Me"了style 是属性...
2020-06-16
function openWindow(){
var tip=confirm("是否打开新网址?");
if(tip==true){var wangzhi=prompt("请编辑您要打开的网址","http://www.imooc.com");
if(wangzhi!=null){window.open(wangzhi,"_blank",'width=400,height=400')
}
else{alert("您未确认打开新网址"); }
}
else{alert("您未确认打开新网址");
}
}
var tip=confirm("是否打开新网址?");
if(tip==true){var wangzhi=prompt("请编辑您要打开的网址","http://www.imooc.com");
if(wangzhi!=null){window.open(wangzhi,"_blank",'width=400,height=400')
}
else{alert("您未确认打开新网址"); }
}
else{alert("您未确认打开新网址");
}
}
最新回答 / 浮生若梦e
<!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:12px;}#txt{ height:400px; width:600px; border:#3...
2020-06-05
<script type="text/javascript">
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
function add(){
var p1 = document.getElementById("p1");
p1.className="one";
}
function modify(){
var p2 = document.getElementById("p2");
p2.className="two";
}
2020-06-04