更改所有文档链接颜色 Javascript
有没有办法可以同时将页面上的所有链接更改为某种颜色?例如:
document.anchors.style.color = "red";
我想可能有一个 onclick 函数。到目前为止还没有运气。
Is there a way I can change all links on my page to a certain color at the same time? such as:
document.anchors.style.color = "red";
probably with an onclick function i'm thinking. No luck so far.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许为此动态创建一个CSS。
Maybe dynamically create a css for that.
document.anchors 返回一个数组,您应该循环遍历它们。
document.anchors return an array, you should loop through them.
它已经被回答了,但无论如何我的版本:)
It has been answered already but well my version anyway :)