var mychar= document.getElementById("con");
mychar.style.color="red";
mychar.style.backgroundColor="#CCC";
mychar.style.width="300px";
mychar.style.color="red";
mychar.style.backgroundColor="#CCC";
mychar.style.width="300px";
2015-08-10
<script type="text/javascript">
var mychar=document.getElementById("con");
document.write("原標題:"+mychar.innerHTML+"<br>"); //輸出原h2標簽內容
mychar.innerHTML="Hello world!"
document.write("修改后的標題:"+mychar.innerHTML); //輸出修改后h2標簽內容
</script>
var mychar=document.getElementById("con");
document.write("原標題:"+mychar.innerHTML+"<br>"); //輸出原h2標簽內容
mychar.innerHTML="Hello world!"
document.write("修改后的標題:"+mychar.innerHTML); //輸出修改后h2標簽內容
</script>
2015-08-09
<script type="text/javascript">
var mychar=document.getElementById("con"); ;
document.write("結果:"+mychar); //輸出獲取的P標簽。
</script>
<p id="con">JavaScript</p>
var mychar=document.getElementById("con"); ;
document.write("結果:"+mychar); //輸出獲取的P標簽。
</script>
<p id="con">JavaScript</p>
2015-08-08
function openWindow()
{ var student=confirm("確定打開新窗體?")
if (student==1)
{var bin=prompt("請輸入網址", "http://www.xianlaiwan.cn/")
if(bin=1){window.open('http://www.xianlaiwan.cn/','_blank','width=400,heigh=500,menubar=no,toolbar=no')}
}
else
{document.write("請按確定啊,腦殘")}}
{ var student=confirm("確定打開新窗體?")
if (student==1)
{var bin=prompt("請輸入網址", "http://www.xianlaiwan.cn/")
if(bin=1){window.open('http://www.xianlaiwan.cn/','_blank','width=400,heigh=500,menubar=no,toolbar=no')}
}
else
{document.write("請按確定啊,腦殘")}}
<script type="text/javascript">
function rec(){
var mymessage=confirm("有小雞雞請按取消鍵,沒有小雞雞請按確認鍵");
if(mymessage==true)
{
document.write("你是女士!");
}
else
{
document.write("你是男士!");
}
}
</script>
function rec(){
var mymessage=confirm("有小雞雞請按取消鍵,沒有小雞雞請按確認鍵");
if(mymessage==true)
{
document.write("你是女士!");
}
else
{
document.write("你是男士!");
}
}
</script>
2015-08-08