英文:
Can HTML inputs with an indeterminate state set be found via querySelector?
问题
有没有一种方法可以启用这个功能?或者它是在CSS的范围之外进行管理的?
我认为根据我目前的研究和它没有作为“input”上的属性呈现的事实,目前似乎没有办法。
英文:
Is there a method to enable this? Or is it managed beyond the reach of CSS?
I'm thinking there's no way based on my research so far and the fact it's not rendered as an attribute on the input
.
答案1
得分: 3
有一个 :indeterminate
伪类。
const inp = document.querySelector("input");
inp.indeterminate = true;
:indeterminate { outline: 5px solid red; }
<input type="checkbox">
<input type="checkbox">
英文:
There is an :indeterminate
pseudo class.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const inp = document.querySelector("input");
inp.indeterminate = true;
<!-- language: lang-css -->
:indeterminate { outline: 5px solid red; }
<!-- language: lang-html -->
<input type="checkbox">
<input type="checkbox">
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论