jquery – $(“input:not(:empty)”)不工作

前端之家收集整理的这篇文章主要介绍了jquery – $(“input:not(:empty)”)不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<html>
<head>
<script type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    alert('hi'+$("input:text").val());
    $("input:not(:empty)").val("sdfdf");
  });
});
</script>
</head>
<body>
<input type="text" value="aa" />
<input type="text" value="" />
<input type="text" value="aa" />
<button>Click me</button>
</body>
</html>

我正在尝试使用jquery访问空的textBoxex并为其分配一个值hello.
但它不工作.

提前致谢

解决方法

:empty检查元素是否有子元素.输入元素不能有子元素.

如果要测试输入元素的值为空:

$(document).ready(function(){
  $("button").click(function(){
    $("input").filter(function() {
        return this.value.length !== 0;
    }).val("sdfdf");
  });
});

在那里我们得到所有的输入元素,然后过滤它,所以只包括那些值属性不是“”的.

原文链接:https://www.f2er.com/jquery/179729.html

猜你在找的jQuery相关文章