正则 jsp页面验证数字文本框 前面默认有0,如何自动去除0(手动填写的时候)
第1个回答 推荐于2016-02-27
添加事件:onfocus()
<input type=“text" value="0" id="numText" onfocus="changeValue()" />
<script language="javascript">
function changeValue(){
document.getElementById("numText").value="";
}
</script>
追问可能是我表述不够清楚,我要的实际效果是,不可以输入0123这样的数字,如果输入的话,直接变为123.但还是谢谢您的回答
追答
function changeValue(){
var str =document.getElementById("numText").value;
if(str.charAt('0')==0){//这个开始是0还是1来着 我忘记了 你试试吧
str=str.substring(1,str.length);
}
document.getElementById("numText").value=str;
}
本回答被提问者采纳
Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答