亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

首頁課程Javascript fun classSection training

Section training

目錄列表

填空,將頁面的所有段落<p></p>的內(nèi)容更改為“PHP中文網(wǎng)”。

var arr = . getElementsByTagName(""); 

for(var x=0; x<arr.length; x++) { 

arr[].innerHTML="PHP中文網(wǎng)"; 

}

這段代碼的輸出是什么?&lt;div id=&quot;test&quot;&gt;&lt;p&gt;PHP中文網(wǎng)&lt;/p&gt;&lt;/div&gt;&lt;script&gt;var el=document.getElementById(&quot;test&quot;); alert(el.hasChildNodes()); &lt;/script&gt;&lt;/div&gt;

填空,改變id ="demo"的顏色屬性

<script> 

var d = document.(""); d..= "red"; 

</script>

你可以在同一個HTML元素上處理多個事件嗎?

填空,在點(diǎn)擊按鈕時提示消息。


<button ="msg()">點(diǎn)我</button>

 <script>

msg() { 

alert("Hi!");

 }

 </script>

當(dāng)鼠標(biāo)指針在div標(biāo)簽上方時顯示警報消息:

<div ="alert('歡迎來PHP中文網(wǎng)學(xué)習(xí)編程!');"> 將鼠標(biāo)移動到這邊看看! </div>