JS控制输入框只输入数字类型与文件域只能选择文件的JS实现
1. JS控制输入框只输入数字类型
<tr bgcolor="#FFFFFF" > <td>报价金额</td> <td><input type="text" name="PRICE" id="PRICE" class="text_8" style="width:120px;" οnkeyup="clearNoNum(this)" /><span style="color:red;" mce_style="color:red;">币种:RMB(请填写数字类型)</span></td> </tr> function clearNoNum(obj) { //先把非数字的都替换掉,除了数字和. obj.value = obj.value.replace(/[^/d.]/g,""); //必须保证第一个为数字而不是. obj.value = obj.value.replace(/^/./g,""); //保证只有出现一个.而没有多个. obj.value = obj.value.replace(//.{2,}/g,"."); //保证.只出现一次,而不能出现两次以上 obj.value = obj.value.replace(".","$#$").replace(//./g,"").replace("$#$","."); if(obj.value.length>10){ alert('限10位以内的长度!'); obj.value =obj.value.substr(0,10); return; } }
2.文件域只能选择文件的JS实现
<table width="90%" border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#cccccc" style="font-size:16px; font-style:inherit;" mce_style="font-size:16px; font-style:inherit;"> <tr bgcolor="#ffffff" class="table_th"> <td width="40%">上传报价附件</td> <td width="60%"><input type="file" name="quoteEnsureAttatchFiles" id="quoteEnsureAttatchFiles" UNSELECTABLE="on" /></td> </tr> </table>
关键字:
1.clearNoNum(obj)
2.UNSELECTABLE="on"