使用这段jQuery我检查某些字段是否匹配或不为空,但我收到此错误。
未捕获的TypeError:无法读取未定义的属性“匹配”
谁能告诉我这里做错了什么?
if ( width.match( /^\d+$/ ) && height.match( /^\d+$/ ) && type.length > 0 && color.length > 0 ) {
这是完整的代码:
if( $( "#config" ) ) {
$( 'input, select' ).on( 'change', function(){
var width = $( "#config-steps #width" ).val();
var height = $( "#config-steps #height" ).val();
var type = $( "#config-steps #type" ).val();
var color = $( "#config-steps #selected-color" ).val();
if ( width.match( /^\d+$/ ) && height.match( /^\d+$/ ) && type.length > 0 && color.length > 0 ) {
$( "#checkout-message" ).show();
// Change visible price
$( "#change-price" ).html( calculate_price().toFixed( 2 ) );
} else {
return false;
}
});
}
答案 0 :(得分:6)
if( $( "#config" ) ) {
总是适用于jQuery,因为jQuery返回一个对象,对象是真实的。检查应检查将返回数字的长度,零为假。
if ($("#config").length) {
现在当jQuery找不到元素时,val()将返回undefined,因此找不到元素。