我正在编写一个 jquery 函数来检查用户输入是否包含字母而不是数字。我只是想让基本功能正常工作,我正在使用警报框来测试它。无论输入什么,测试都应该显示警报。它在输入数字时起作用,但输入的任何其他字符都不会触发警报。有什么想法吗?
该表单被分解为包含在 div 中的字段集,这些字段集作为叠加层弹出。每当用户尝试关闭弹出窗口时,都会调用该函数。不是说这会引起问题吗?
这是测试功能:
function validateItem(item){
var fvalue = $(item).val();
alert(fvalue);
return false; }
这是一个示例表项
<tr>
<td class="td_thumbs">
<div>
<a class="fancybox" data-fancybox-group="vinyl-banners" href="img/products/vinyl-corporateblue.jpg"> <img src="img/products/thumbs/vinyl-corporateblue-thumb.png" alt="vinyl c-blue"/></a>
<label>Corporate Blue</label>
</div>
</td>
<td>6</td>
<td>
<input id="vinyl-blue" type="text" max="6" min="0" value="0"/>
</td>
</tr>
调用函数,
//iterate through each table
$('table').each(function() {
$thisTable = $(this);
//iterate through each input
$(this).find('input').each(function() {
var $this = $(this), i_value = $this.attr('value'),
itemLabel = $this.closest('tr').find('label').html();
//if any items have a positive value
if (i_value > 0) {
//we want to grab the heading for these items
setHeading = true;
//validate item
if(validateItem($this)){//if quantities are valid
//build list of items of this type
$this.css({
'border':'1px solid #ddd',
'background-color' : '#efefef'
});
items += '<li>' + i_value + 'x ' + itemLabel + '</li>';
}
else{//invalid quantity
$this.css({
'border':'1px dashed #F00',
'background-color' : '#f7d2d4'
});
errorFlag = true;
//exit item and table loops
return false;
}//end validate
}//end value check
});//end input iteration