0

我正在尝试对它进行验证Quantity它应该运行Function验证以确保该字段中的任何内容不小于 1 或具有小数或字母或符号。它应该有一个警告说Quantity should not be less than 1

形式

<Form method="post" action="qty.php">
    <tr>
        <td>Quantity</td>
        <td><input type="text" name="Qty" id="Qty" value="1" /></td>
    </tr>   
    <input type="hidden" name="pid" id="pid" value="<?php echo $id; ?>" />
    <button type="submit" name="submit" class="show_hide" id="submit" name="submit">add</button>

</form>

下面的东西

javascript

function nonzero(val,wishlist)
{
    if(val.value<1 || val.value=='')
    {
        alert("Quantity should not be Zero or Null")
        val.value='1';
        val.focus();
        return false;
    }
    if(wishlist==1){
        document.getElementById('option').value='wishlist';
        document.product26.submit();
    }
    else
    {
        return option_add('26');
    }
    //return true;
} 
4

2 回答 2

1
  1. 您可以使用 HTML 5

    <input type="number" name="Qty" id="Qty" value="1" min="1" />

  2. 然后使用Javascript。

  3. 然后(并且总是这样做)编写一些 PHP 进行仔细检查。

    $qty = $_POST['qty'];
    if(!is_int($qty) || intval($qty) < 1) { echo 'Please provide an number only.';
    } else { $qty = intval($qty); // .... Etc }

于 2013-06-26T20:30:48.580 回答
0

如果 qty 是 INT ,只需检查 php :

  $qty = $_POST['qty'];

  if(!is_int($qty) || $qty < 0 ){
    echo 'Please provide an positive number only.';  
  }else{
    echo 'Im a number';
  }
于 2013-06-26T20:22:36.143 回答