How to use querySelectorAll only for elements that have a specific attribute set?(如何仅将 querySelectorAll 用于具有特定属性集的元素?)
问题描述
我正在尝试对所有设置了 value
属性的复选框使用 document.querySelectorAll
.
I'm trying to use document.querySelectorAll
for all checkboxes that have the value
attribute set.
页面上还有其他复选框没有设置value
,每个checkbox的值都不一样.id 和名称不是唯一的.
There are other checkboxes on the page that do not have value
set, and the value is different for each checkbox. The ids and names are not unique though.
示例:<input type="checkbox" id="c2" name="c2" value="DE039230952"/>
如何只选择那些设置了值的复选框?
How do I select just those checkboxes that have values set?
推荐答案
你可以像这样使用querySelectorAll()
:
var test = document.querySelectorAll('input[value][type="checkbox"]:not([value=""])');
这转化为:
获取属性为value"且属性value"不为空的所有输入.
get all inputs with the attribute "value" and has the attribute "value" that is not blank.
在这个演示中,它禁用了非空值的复选框.
In this demo, it disables the checkbox with a non-blank value.
这篇关于如何仅将 querySelectorAll 用于具有特定属性集的元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何仅将 querySelectorAll 用于具有特定属性集的元
基础教程推荐
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01