DOM 網頁物件模型 -- 範例:innerText 與 innerHTML
DOM 物件簡介文件事件表格表單樣式相關資訊相關網站相關文獻最新修改訊息相關網站參考文獻最新修改簡體版English |
以下範例會取得 hi 節點的 innerText 與 innerHTML 顯示出來,請觀察其不同點。 <html> <head> <title>節點存取示範</title> </head> <body> <div id ="hi"><b>你好!</b></div> <input type="button" value="hi.innerText" onclick="alert(document.getElementById('hi').innerText)"); <input type="button" value="hi.innerHTML" onclick="alert(document.getElementById('hi').innerHTML)"); </body> </html> |
page revision: 1, last edited: 14 Oct 2010 08:41






Post preview:
Close preview