web开发常用js
2020-05-21
1 min read
js获取某类的数量
var aa=document.getElementsByClassName("tag").length;
js获取某id下面某标签的数量
document.getElementById("aa").getElementsByTagName("a");
js中给元素添加类的方法
document.getElementById("aa").className="tag_curr";
document.getElementById("aa").classList.add("tag_curr");
区别:第一种方法覆盖原类,第二种叠加。
获取id名
this.getAttribute("id");
onload
window.onload = function(){hello()};
<body onload="hello1();hello2();hello3()">