方法主要分为两大类
第一类:通过属性获取。
<p id = "fash"></p>
通过
document.getElementById("fash")
获取到p页签。
第二类:通过css选择器获取
<p id = "fash"></p>
通过
document.querySelector(".fash")
获取到p页签。
详细的话可以参考:
喜欢的点个赞❤吧!
方法主要分为两大类
第一类:通过属性获取。
<p id = "fash"></p>
通过
document.getElementById("fash")
获取到p页签。
第二类:通过css选择器获取
<p id = "fash"></p>
通过
document.querySelector(".fash")
获取到p页签。
详细的话可以参考:
喜欢的点个赞❤吧!