SO中文参考
首页
(current)
程序语言
c
java
python
c++
go
javascript
swift
c#
操作系统
linux
ubuntu
centos
unix
数据库
oracle
mysql
mongodb
postgresql
框架
node.js
angular
react-native
avalon
django
twisted
hadoop
.net
移动开发
android
ios
搜索
如果我们有两个名为“按钮”的 html 元素,我们如何选择特定元素并使用 javascript 使用查询选择器向其添加样式</desc> <question vote="0"> <pre><code><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="style.css"> <title>Shopping List</title> <style> .btn { background-color: #333; color: #fff; border: none; border-radius: 5px; padding: 10px 20px; cursor: pointer; } .btn-clear { margin-top: 20px; width: 100%; font-size: 16px; background-color: transparent; color: #333; border: 1px solid #ccc; border-radius: 5px; padding: 10px 20px; cursor: pointer; } </style> </head> <body> <button class="remove-item btn-link text-red"> <i class="fa-solid fa-xmark"></i> </button> <button id="clear" class="btn-clear"><b>Clear All</b></button> <script> const clearButton = document..querySelector(('button')); clearButton.style.color = 'red'; </script> </body> </html> </code></pre> </question> <answer tick="false" vote="0"> <p>您可以使用按钮 id 来完成此任务</p> <p>示例-></p> <pre><code>const clearButton = document.querySelector('#clear'); clearButton.style.color = 'red'; </code></pre> </answer> </body></html>
问题描述
投票:0
回答:0
javascript
dom
jquery-selectors
最新问题
问题中的一个heap-use-after-free错误--Design MyLinkList(LeetCode No.707)
如何在多列上创建FULLTEXT索引?
Visual Composer 到 HTML
计算给定电阻邻接列表的总电阻
如何阻止空 iframe 在注入时触发加载事件?
是否可以使用文件系统访问API来观看文件?
嵌入启用自动播放和全屏功能的 YouTube 视频
Snowflake 中的小十进制数计算不正确
如果前一行包含以特定符号开头的字符串,则合并行
postMessage 到 iFrame 无法通过 GTM 工作
使用摩纳哥裁剪悬停降价描述
Sphinx 未显示版本
为什么构造函数传递实体字段不会出现n+1问题?
ConversationalRetrievalChain 与 LLMChain
将 Rdd 转换为数据帧
React router dom 改变动态路由中的 url 但不改变视图
为什么第一次调用 ::create() 方法不会在 Laravel 中的模型上设置 id 字段?
Swift 中与枚举相关的对象缺少 ObservableObject 和 @Published 包装器,从而阻止状态更改更新 UI
Spring Boot初始化中的BeanCreationException问题排查
R Markdown 图像标题未显示
© www.soinside.com 2019 - 2024. All rights reserved.