0

我正在编写一个 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
4

2 回答 2

0

发现问题!该函数在以下内容中被调用..

if (i_value > 0) {

这意味着它仅在输入数字时才被调用。我把调用放在这个 if 语句之外,它按预期工作,所以解决方案是改变

if(i_value > 0)

if(i_value != 0)
于 2012-12-18T00:20:00.177 回答
0

这是一个功能,您可以在其中获取输入框的内容,无论是数字还是字母,您都可以在此处查看

但是,如果您不希望用户输入任何数字,您可以使用 onkeypress 事件

如下检查这里

onkeypress
于 2012-12-17T06:56:15.327 回答