标签文本评估 Jquery
为什么标签的文本在下面的脚本中被评估为不等于 ""
,即使实际上其中没有任何文本:
$('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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
trim
功能。可能有额外的空白try using
trim
function. Might be there is additional white spaces