我正在尝试使用模式,但它不适用于我的主题。现在我认为在 javascript 或 jquery 中工作很好。
<input name="abc" id="abc" type="text" required="required" tabindex="1"/>
什么是数值的 javascript 或 jquery 代码(不是负数)
我正在尝试使用模式,但它不适用于我的主题。现在我认为在 javascript 或 jquery 中工作很好。
<input name="abc" id="abc" type="text" required="required" tabindex="1"/>
什么是数值的 javascript 或 jquery 代码(不是负数)
试试 HTML 5 控件。你会得到这一切。
<input type="number" name="quantity" min="1" max="5" pattern=/[0-9]/>
这就是你可以用 javascript 做的所有事情。
var val=document.getElementById('abc').value;
if(isNaN(val)){
alert('This is not a Number');
}else if(val< 0){
alert('This is a negative Number');
}else{
alert('This is a Number');
}
你也可以使用 HTML5 dom
<input type="number" min="0" />