input只能輸入數字,並2位小數 不能大於5
//只能輸入數字,並2位小數 不能大於5
function number(obj)
//先把非數字的都替換掉,除了數字和.
$amountinput.val($amountinput.val().replace(/[^\d.]/g, ""). //
只允許乙個小數點
replace(/^\./g, "").replace(/\./g, "
."). //
只能輸入小數點後兩位
replace("
.", "
$#$").replace(/\./g, "").replace("
$#$", "
.").replace(/^(\-)*(\d+)\.(\d\d).*$/, '
$1$2.$3
'));
//不能大於5 大於5賦值5.00
if (number($amountinput.val()) > 5
) });
$("#
" + obj).on('
blur
', function() );
}
input只能輸入數字等
html中 雖然是輸入非數字之後進行空替換,並不是直接不允許輸入,但是不存在相容性問題,而且本身寫法簡單並且改變限制型別之後替換正規表示式也很容易實現。2 效果很好,直接控制不允許輸入非數字,但是最大的不足就是存在相容性問題 js中 function onlynum ime mode是css3的新特...
input輸入框只能輸入數字,只能輸入字母數字組合
輸入大小寫字母 數字 下劃線 1 g,輸入小寫字母 數字 下劃線 2 g,輸入數字和點 3 g,輸入中文 4 g,輸入數字 輸入英文 5 g,輸入中文 數字 英文 6 g,輸入數字和字母 除了英文的標點符號以外,其他的都可以中文,英文本母,數字,中文標點 7 g,只能輸入數字 小數點也不能輸入 只能...
微信小程式 設定input只能輸入數字
view如下 class ys number input type number auto focus focus value title bindinput handleinput bindblur validate maxlength 11 placeholder 請輸入十一位手機號碼.plac...