标签文本评估 Jquery

发布于 2024-12-06 11:06:36 字数 396 浏览 0 评论 0原文

为什么标签的文本在下面的脚本中被评估为不等于 "",即使实际上其中没有任何文本:

              $('label[class*="lb"]').each(function(index){
                  if($(this).text()!=""){
                    a_arr.push($(this).val());
                    alert(index+ "  " + $(this).val());
                  }
              });

$(this).text()!="即使标签没有文本,“ 也会被评估为 true。为什么?

Why is the label's text is evaluated as not equal to "" in the below script even when in reality there is not any text in it:

              $('label[class*="lb"]').each(function(index){
                  if($(this).text()!=""){
                    a_arr.push($(this).val());
                    alert(index+ "  " + $(this).val());
                  }
              });

$(this).text()!="" is evaluated true even when the label has no text. Why?

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

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

发布评论

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

评论(1

樱花坊 2024-12-13 11:06:36

尝试使用 trim 功能。可能有额外的空白

 if($.trim($(this).text())!="") {
      //your code here
 }

try using trim function. Might be there is additional white spaces

 if($.trim($(this).text())!="") {
      //your code here
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文