實(shí)現(xiàn)效果
showTitle:當(dāng)點(diǎn)擊顯示標(biāo)題按鈕時,將所有的標(biāo)題顯示出來
hideTitle:當(dāng)點(diǎn)擊隱藏標(biāo)題按鈕時,將所有的標(biāo)題隱藏起來
addCity:當(dāng)點(diǎn)擊添加城市按鈕時,會在原有的城市列表下新建一個城市名字
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"> <title></title> <script> // function showTitle() { // var titleElement = document.getElementById("title"); // titleElement.style.display = "block"; // } // // function hideTitle() { // var titleElement = document.getElementById("title"); // titleElement.style.display = "none"; // } function addCity() { var newElement = document.createElement("li"); // <li></li> var textNode = document.createTextNode("重慶"); // 重慶 newElement.appendChild(textNode); // <li>重慶</li> document.getElementById("city").appendChild(newElement); } </script></head><body><h3 id="title" style="display: block">八維學(xué)院</h3><h3 id="title222" style="display: block">八維學(xué)院222</h3><p>選擇城市</p><ul id="city"> <li>北京</li> <li id="city_2">上海</li> <li>天津</li></ul><input type="button" onclick="showTitle()" value="顯示標(biāo)題"/><input type="button" onclick="hideTitle()" value="隱藏標(biāo)題"/><input type="button" onclick="addCity()" value="添加城市"/><script> /*window.document.getElementById("title");*/ var arr = document.getElementsByTagName("h3"); console.log(arr[0]); console.log(arr[1]);</script></body></html>
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:0731-84117792 E-MAIL:11247931@qq.com