$('.mustWriteNum').get(0).oninput=function(){ $(this).val($(this).val().replace(/[^d]/g,''));//只允许用户输入数字 }
oninput既可以监听用户输入,也可以监听用户复制过来的内容;