文章分类 - Javascript
摘要:初级篇 选择器 元素选择器css:h1{color: red}html:<h1> hello world </h1>类型选择器css:koo{color: red}html:<koo> hello world </koo>属性选择器css:[title]{color: red} //指定属性html
阅读全文
摘要:问元素方法:document.getElementById('id')document.getElementsByTagName('tagname')document.getElementsByClassName('class')节点操作方法:appendChild()removeChild()re
阅读全文