jquery - 找到第一个包含空输入的div

发布于 2025-01-04 21:41:32 字数 427 浏览 0 评论 0原文

使用jquery,如何找到第一个包含无值输入的div?

<div class="field">
  <input type="text" value="12">
</div>
<div class="field">
  <input type="text" value="13">
</div>
<div class="field">
  <input type="text">
</div>
<div class="field">
  <input type="text">
</div>

$('.field input').filter('text[value=""]').parent().addClass('first_empty')

Using jquery, how can I find the first div that contains an input with no value?

<div class="field">
  <input type="text" value="12">
</div>
<div class="field">
  <input type="text" value="13">
</div>
<div class="field">
  <input type="text">
</div>
<div class="field">
  <input type="text">
</div>

$('.field input').filter('text[value=""]').parent().addClass('first_empty')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

十级心震 2025-01-11 21:41:32

你们是如此接近。将元素添加到属性选择器,或者 ':text[value=""]' 也可以。 演示

 $('.field :input').filter('input:text[value=""]')
                   .parent(':first')
                   .addClass('first_empty');

You were so close. Add the element to the attribute selector, or ':text[value=""]' will work as well. DEMO

 $('.field :input').filter('input:text[value=""]')
                   .parent(':first')
                   .addClass('first_empty');
微暖i 2025-01-11 21:41:32

选择器将不起作用,因为用户键入的内容会影响 value property,而不是 value 属性。

你将需要这样的东西(我用纯 JS 编写,因为我不使用 jQuery):

function findFirstEmptyInput() {
    var qsa = document.querySelectorAll(".field input"), l = qsa.length, i;
    for( i=0; i<l; i++) {
        if( qsa[i].value == '') return qsa[i];
    }
    return false;
}

Selectors won't work, because a user typing input affects the value property, NOT the value attribute.

You will need something like this (I'm writing this in plain JS because I don't use jQuery):

function findFirstEmptyInput() {
    var qsa = document.querySelectorAll(".field input"), l = qsa.length, i;
    for( i=0; i<l; i++) {
        if( qsa[i].value == '') return qsa[i];
    }
    return false;
}
趁微风不噪 2025-01-11 21:41:32
$('.field > input:text[value=""]').parent().addClass('first_empty');
$('.field > input:text[value=""]').parent().addClass('first_empty');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文