$("input").inputlimit(options); options配置如下: { type: "length", //length,numeric words: { //字符串设置 len: 10, //限制长度 gbk: true //中文字符是否占用2长度 }, numeric: { //数字/小数设置 allowdec: 0, //小数位,-1:无小数,0:不限制小数位,>0:具体位数 negative: 0 //允许负数 1:允许,0:不允许 } }