我正在尝试对它进行验证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;
}