誰能告訴我什麼是驗證用戶輸入的替代方法?這只是我今天寫的一個非常基本的代碼。這個簡單的Javascript驗證的其他選擇嗎?
- 有一個按鈕,在HTML
- 編碼時,其上的用戶點擊,它會提示輸入
- 輸入是隻有數字
var a, b;
function cal(){
a = prompt("enter the width");
while(isNaN(a) || a <= 0 || a > 1000){
alert("Invalid Input, enter it again!");
return cal();
}
b = prompt("enter the length");
while(isNaN(b) || b <= 0 || b > 1000){
alert("Invalid Input, enter it again!");
return cal();
}
result(a,b);
}
function result(a,b){
var perimeter = (2*a)+(2*b);
var area = (a*b);
document.write("Perimeter: "+perimeter+"<br>");
document.write("Area: "+area+"<br>");
}
搜索谷歌的jQuery驗證插件。 – Haben
我的示例http://jsfiddle.net/nCV4w/ – PiLHA