window.open('http://www.xianlaiwan.cn','_blank','width=600,height=400,top=100,left=0'); 這才對哦 寬為600,高為400 答案弄錯了
2015-08-26
var mychar= document.getElementById("con").innerHTML ;
結果:JavaScript
var mychar= document.getElementById("con")
結果:[object HTMLParagraphElement] ;
結果:JavaScript
var mychar= document.getElementById("con")
結果:[object HTMLParagraphElement] ;
2015-08-26
function openWindow(){
var openwin=confirm("確認打開網址?");
if(openwin==true)
{var ensure=prompt("確認打開以下網址?","www.xianlaiwan.cn/")
if(ensure!=null){window.open("http://"+ensure,'_blank','width=400px,height=500px,menubar=no,toolbar=no')}
else {}
}
else
{}
}
var openwin=confirm("確認打開網址?");
if(openwin==true)
{var ensure=prompt("確認打開以下網址?","www.xianlaiwan.cn/")
if(ensure!=null){window.open("http://"+ensure,'_blank','width=400px,height=500px,menubar=no,toolbar=no')}
else {}
}
else
{}
}
<script type="text/javascript">
document.write("開啟JS之旅!");
</script>
document.write("開啟JS之旅!");
</script>
2015-08-24
document.write("hello");
document.getElementById("p1").style.color="blue";
document.getElementById("p1").style.color="blue";
2015-08-24