在input失去焦点的时候判断输入是否为数字
$("body").on("blur", ".input", function () {
if (isNaN($(this).text()) || isNaN($(this).val())) {
$(this).text('')
$(this).val('')
} else {
$(this).text($(this).text())
$(this).val($(this).val())
}
})
//是的话就插入值 不是返回默认的
我叫洱月,我愿意陪你到洱海风花雪月,你,看到我了吗?
网友评论