if($('#this').val().indexOf('4289')){
Do something
else
Do something.
这仅适用于那个4289
,
当我尝试使用“或”添加其他要在其旁边编制索引的数字时,它不起作用。我应该如何输入其他号码。例如
IndexOf('4289||78843')
我希望它检查这些数字,如果输入字段中的数字不是其中之一,则回显错误。
当一个人重新回到这个领域时,还有更多的事情发生。
$('#Zip').blur(function(){
if (($(this).val().indexOf('0860') > -1)||($(this).val().indexOf('0850') > -1)){
$('#Status_Zip').html("No way.")
$(this).alterClass('*_*', 'Success')
return false;
}else{$('#Status_Code').hide()
$(this).alterClass('*_*', 'Error')
$(this).css('border-color', '#F00').css('background-color', '#FFC').effect("pulsate",{times:4},2)
return true;
}
})