検証を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;
}