<html><head><meta http-equiv="content-Type" content="text/html;charset=gb2312"><title>js 只能輸入數(shù)字和小數(shù)點(diǎn)</title>
<script language="JavaScript" type="text/javascript">
function clearNoNum(obj){ obj.value = obj.value.replace(/[^\d.]/g,""); //清除“數(shù)字”和“.”以外的字符
obj.value = obj.value.replace(/^\./g,""); //驗(yàn)證第一個(gè)字符是數(shù)字而不是.
obj.value = obj.value.replace(/\.{2,}/g,"."); //只保留第一個(gè). 清除多余的.
obj.value = obj.value.replace(".","$#$").replace(/\./g,"").replace("$#$",".");
}
</script>
</head><body>只能輸入數(shù)字和小數(shù)點(diǎn)的文本框:<input name="input1" onkeyup="clearNoNum(this)"></body></html>
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持腳本之家!