DOM
1211 ワード
Document Object Model allows use to interface javascript code to interact with HTML & CSS document +
For more info,
https://developer.mozilla.org/en-US/
.getElementById()
Returns the elemnt with the id getElementByClassName()
Returns list of all elements belonging to a class getElementsByTagName()
Returns list of all elements with the tag querySelector()
Returns the first object matching the CSS style selector querySelectorAll()
Returns all objects matching the CSS style selelctorvar myvariable = document.querySelector()
myvariable +.textContextreturns just the text.innerHTMLreturns the actual html.getAttribute()returns the original attribute.setAttribute()set an attribute.addEventListner(event,function())add listener that execute function() upon specified eventFor more info,
https://developer.mozilla.org/en-US/
Reference
この問題について(DOM), 我々は、より多くの情報をここで見つけました https://velog.io/@skang6283/DOMテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol