如何比较jQuery val()和JavaScript值
作者:互联网
当我进行以下比较时,我得到假,尽管val()和值在视觉上显示相同的值:12
if ($(this).val() == txt.value)//returns false
当我同时提醒$(this).val()和txt.value时,我得到12.其中一个是字符串,另一个是int吗?如果是这样,哪一个是什么?
解决方法:
做一个typeof来知道你的值的类型.
console.log(typeof $(this).val());
console.log(typeof txt.value);
当使用.val()之类的修剪空格时,jQuery可能会改变这些值.为了确保,您可以避免使用val().
.each()中的this以及第二个参数是每次迭代的DOM元素.你可以get the value of the option
directly:
$('select > option').each(function(i,el){
//we should be getting small caps values
console.log(this.value);
console.log(el.value);
});
使用松散比较(==)时,数字12和字符串12应该相同.更令人惊讶的是,即使字符串周围有空格也是如此.但是通过严格比较(===),它们不应该是:
"12" == 12 // true
" 12 " == 12 // true; tested on Firefox 20 (nightly)
"12" === 12 // false
在这一点上,我们已经除去了所有可想到的陷阱.如果没有工作,首先两者可能是完全不同的值.
标签:html-input,javascript,jquery,html-select 来源: https://codeday.me/bug/20190725/1536571.html