/*
*長度追蹤器
*v2. 1.0
*bind2Id:用於顯示長度變化的元素的id
*max:最大長度
*msgWrap:提示訊息(必須要有一個"-"佔位符)
*eg: $('#input').lenTracer({bind2Id:'myTracer',max:150,msgWrap:'您也可以輸入-個字元'});
*author:liujg1015@gmail.com
* /
(function ($) {
var zw_validate = function (el, option) {
this.el = $(el);
this.bindEl = false;
this.setting = {
bind2Id: false,
max: 100,
msgWrap: '您也可以輸入-個字元'
};
if (option) {
$.extend( this.setting, option);
this.init();
}
};
zw_validate.prototype = {
init: function () {
var _this = this;
this.bindEl = $('#' this.setting.bind2Id);
this.el.focus(function () { _this.start(); }).blur(function () { _this.dispose (); });
this.el.css({ paddingBottom: 20 });
this.initMsg();
},
initMsg: function () {
var wrap = this.setting.msgWrap.split('-');
this.bindEl.text(this.setting.max - this.count().total).before(wrap[0]).after(wrap[ 1]);
},
count: function () {
var _val = this.el.val();
var _len = _val.length;
var _rowCount = 0;
var _enterLen = 0;
var _partten = /n /g;
if (_len > 0 && _partten.test(_val)) {
_enterLen = 3;
while ((result🎜>_enterLen = 3;
while ((result = _partten.exec(_val)) != null) {
if ((result.index 1 _enterLen) > this.setting.max) {
break;
}
_enterLen = 3;
}
_rowCount = _val.match(_partten).length;
}
return { total: (_len _rowCount * 3), enterLen: _enterLen };
}
}
function () {
var _this = this;
_this.timer = setInterval(function () {
var _val = _this.el.val();
var _rlt = _this.count() ;
if (_rlt.total > _this.setting.max) {
if (_rlt.enterLen > 0) {
_this.el.val(_val.substr(0, _this.setting.max - _rlt.enterLen));
}
else {
_this.el.val(_val.substr(0, _this.setting.max));
}
_this.bindEl.text (_this.setting.max - _this.count().total);
return;
}
_this.bindEl.text(_this.setting.max - _rlt.total);
}, 300);
},
dispose: function () {
clearInterval(this.timer);
},
restore: function () {
this.bindEl.text( this.setting.max - this.el.val().length);
}
};
$.fn.extend({
lenTracer: function (option) {
return new zw_validate(this, option);
}
});
})(jQuery);
一、上面是計數器的腳本,可將腳本貼到js文件中,然後在html裡面加入引用。
複製代碼
二、上面的程式碼是展示如何使用。 這個計數器是自己用jQuery寫的,因此要依賴jQuery函式庫函數。能計算回車符,因為在textarea裡面的回車符提交到後台後是'rn'。歡迎批評、指正。