我想檢查一個文本框的值是否爲空,並且如果文本框大於0,則使用IF或函數通過Javascript。如何檢查文本框是否非空並且其值大於0而不是文本?
我的代碼如下:
if(qty != "" && qty <> "0"){
//
}
哪裏數量是名稱和HTML輸入字段
的ID,這是某些部分從完全更新的代碼。
if(qty != "")
{
if(/^\d+$/.test(qty.value)){
var value = parseint(qty.value, 10);
sizeID = document.getElementById("size" + colID + prodID).value;window.location = "/_nCartAddToBasket.asp?ProductID=" + prodID + "&ProductColourID=" + colID + "&ProductSizeID=" + sizeID + "&Qty=" + qty + "&fgID=" + fgID;
}else{
alert("You must enter a numeric value in the quantity field.");}
}else{
alert("You must enter a quantity before adding to your basket.");}
}
檢查做ü意味着一個文本框或文本區域? – kjy112 2011-01-31 14:19:46
Textfield `code` 輸入數量: – TheBlackBenzKid 2011-02-02 13:16:29