LimitedNnumber('.eventBox', '.viewBox', 50)
/*
* eventBox:輸入框id或者class
* viewBox:提示元素id或者class
* textLength:限制長度
*/
function LimitedNnumber(eventBox, viewBox, textLength) {
$(document).on('input propertychange paste keyup', eventBox, function(event){
this.value = https://www.cnblogs.com/z421/p/this.value.replace(this.value.slice(textLength), "")
$(viewBox).html(this.value.length +"/"+ textLength)
})
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/43735.html
標籤:JavaScript
