鴻蒙js怎么使用原生的document對(duì)象?
1.通過id查找:var doc=document.getElementById("idName");
2.通過標(biāo)簽名查找:var doc=document.getElementsByTagName("tagName");
3.通過類名查找:var doc = document.getElementsByClassName("className");
html dom允許javascript改變html元素的內(nèi)容。
1.改變html輸出流在javascript中,document.write()可用于直接向html輸出流直接寫內(nèi)容。
tip:絕不要使用在文檔加載之后使用 document.write()。這會(huì)覆蓋該文檔。
2.改變html內(nèi)容
修改html內(nèi)容的最簡(jiǎn)單的方法是使用innerHTML屬性。如:
document.getElementById(idName).innerHTML="文本內(nèi)容"
3.改變html屬性
document.getElementById(id).attribute='new value',如:
document.getElementById(idName).src = 'location.png'
html dom允許javascript改變html元素樣式。
document.getElementById(id).style.property=new style,如:
document.getElementById(idName).style.color="red";
html dom使javascript有能力對(duì)html事件做出反應(yīng)。