作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用javascript(最好是查询选择器)从特殊项目中删除textDecoration。但我不知道我做错了什么。这里是代码。CodePen
<h1>Thanks for the Help!</h1>
<h1> My problem set </h1>
<ul>
<li id="highlight">List Item 1</li>
<li class="bolded">List Item 2</li>
<a href="#" class="special"><li class="bolded">List Item 3</li></a>
</ul>
var sLi = document.querySelector("ul a.special");
for (var i = 0; i <= sLi.length; i++){
sLi[i].style.textDecoration = "none";
}
最佳答案
无需循环查询结果,因为 querySelector()
仅返回一项。
如果您一直在使用querySelectorAll()
,您会希望循环返回一个节点列表。
var sLi = document.querySelector("ul a.special");
sLi.style.textDecoration = "none";
<h1>Thanks for the Help!</h1>
<h1> My problem set </h1>
<ul>
<li id="highlight">List Item 1</li>
<li class="bolded">List Item 2</li>
<li class="bolded"><a href="#" class="special">List Item 3</a></li>
</ul>
另外(仅供引用),li
应该包含 a
,而不是相反。
关于javascript - 如何使用查询选择器从 <a> 标记中包含的列表项中删除文本装饰?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44550103/
我是一名优秀的程序员,十分优秀!