标签:inpu return mat ber from string unicode nic 输入
$(‘input[type=number]‘).keypress(function(e) {
if (!String.fromCharCode(e.keyCode).match(/[0-9\.]/)) {
return false;
}
});
fromCharCode()是String的一个方法,可接受一个指定的Unicode值,返回一个字符串
使用方法:String.formCharCode()
标签:inpu return mat ber from string unicode nic 输入
原文地址:http://www.cnblogs.com/senyu/p/7125565.html