(一点小理解,不一定对)之所以最顶端是HelloWorld,是因为它相当于加载了2遍HTML程序,第一遍加载到p以后发现了script,此时mychar.innerHTML的内容被修改。因为被修改了它会重新再加载一遍HTML程序以适应变化,因此,此时的h2标签的内容已经被换了,所以结果显示的是HelloWrold。
2019-04-02
<script type="text/javascript">
function openWindow(){
var o=confirm("是否打开新网址?");
var h;
if(o==true)
{
h=prompt("你要打开的网址");
if(h!=null){
window.open(h, "_blank","width=400,height=500,toolbar=no,munebar=no");}
}
else
{}
}
function openWindow(){
var o=confirm("是否打开新网址?");
var h;
if(o==true)
{
h=prompt("你要打开的网址");
if(h!=null){
window.open(h, "_blank","width=400,height=500,toolbar=no,munebar=no");}
}
else
{}
}
<script type="text/javascript">
function rec(){
var message = confirm("新窗口打开网站");
if(message == true){
window.open("http://www.imooc.com","width=400px,height=500px,top=100px,left=0,menubar=no,toolbar=0");
}
else{
}
}
</script>
function rec(){
var message = confirm("新窗口打开网站");
if(message == true){
window.open("http://www.imooc.com","width=400px,height=500px,top=100px,left=0,menubar=no,toolbar=0");
}
else{
}
}
</script>
这题也是醉了吧。。。
任务
在右边编辑器第8行代码,补充代码,打开http://www.imooc.com网页,将在新窗体中打开,宽为600,高为400,距屏顶100像素,屏左0像素。当点击按钮时,打开新窗口。
?不会了怎么办
window.open('http://www.imooc.com','_blank','height=600,width=400,top=100,left=0');
我检查了半天还以为怎么错了。结果题目要求的宽600高400,答案却是宽400高600,我交换了俩属性的值就通过了,不交换就不让我通过。
神一般的答案。。。
任务
在右边编辑器第8行代码,补充代码,打开http://www.imooc.com网页,将在新窗体中打开,宽为600,高为400,距屏顶100像素,屏左0像素。当点击按钮时,打开新窗口。
?不会了怎么办
window.open('http://www.imooc.com','_blank','height=600,width=400,top=100,left=0');
我检查了半天还以为怎么错了。结果题目要求的宽600高400,答案却是宽400高600,我交换了俩属性的值就通过了,不交换就不让我通过。
神一般的答案。。。
2019-04-01
已采纳回答 / 慕码人9133547
function width_height(){ box.style.width='500px',height='800px'; //不能写在一行,写一行只会运行width=“500px” }写成:box.style.width='500px';box.style.height='800px';
2019-04-01
function openWindow(){
var open=confirm('是否打开新的网址');
if(open==true){
window.open('http://www.imooc.com','width=400,height=500,menuber=no,toolbar=no');
}else{
alert('退出');
}
}
共同参考
var open=confirm('是否打开新的网址');
if(open==true){
window.open('http://www.imooc.com','width=400,height=500,menuber=no,toolbar=no');
}else{
alert('退出');
}
}
共同参考
最赞回答 / qq_慕函数3177880
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>className属性</title><style> body{ font-size:16px;} .one{ border:1px solid #eee; width:230px; height:50p...
2019-03-30