如果页面上六个文本字段之一中有任何输入,则尝试将类添加到按钮。得到一个控制台错误,上面写着“ Uncaught TypeError: Object [object Object] has no method 'value'
”,指的是我的var val
行。
语法?谢谢你的帮助。
HTML:
<input id="a" class="answer" type="text">
<input id="b" class="answer" type="text">
JavaScript:
var val = $('.answer').each(function(){
$(this).value();
});
if (/^\s*$/.test(val)){
$('#theOne').addClass('show');
}