首页 > 代码库 > html5 选择元素
html5 选择元素
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> .div1{width: 50px; height: 50px; background: yellow;} .div2{width: 50px; height: 50px; background: red; } </style> <script> window.onload=function(){ /*只能获取元素 的第一个*/ var odiv=document.querySelector(‘.div1‘); var oall=document.querySelectorAll(‘div‘); odiv.style.background="red"; oall[1].style.height=‘1000px‘; var odiv3=document.getElementById(‘div3‘); /*类似于数组的对象*/ alert(odiv3.classList); odiv3.classList.add(‘box7‘); odiv3.classList.remove(‘box3‘); odiv3.classList.toggle(‘box4‘); } </script> </head> <body> <div class="div1"></div> <div class="div2"></div> <div id="div3" class="div3 div4 div5"></div> </body> </html>
html5 选择元素
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。