当前位置:  编程技术>jquery

jquery代码-如何限制“Text-Area”域中的字符的个数

    来源: 互联网  发布时间:2014-09-03

    本文导语:  代码如下: jQuery.fn.maxLength = function (max) { this.each(function () { var type = this.tagName.toLowerCase(); var inputType = this.type ? this.type.toLowerCase() : null; if (type == "input" && inputType == "text" || inputType == "password") { this.maxLength = max; } else if (type == ...

代码如下:
jQuery.fn.maxLength = function (max) {
this.each(function () {
var type = this.tagName.toLowerCase();
var inputType = this.type ? this.type.toLowerCase() : null;
if (type == "input" && inputType == "text" || inputType == "password") {
this.maxLength = max;
}
else if (type == "textarea") {
this.onkeypress = function (e) {
var ob = e || event;
var keyCode = ob.keyCode;
var hasSelection = document.selection
? document.selection.createRange().text.length > 0
: this.selectionStart != this.selectionEnd;
return !(this.value.length >= max
&& (keyCode > 50 || keyCode == 32 || keyCode == 0 || keyCode == 13)
&& !ob.ctrlKey && !ob.altKey && !hasSelection);
};
this.onkeyup = function () {
if (this.value.length > max) {
this.value = this.value.substring(0, max);
}
};
}
});
}; //用法 $('#mytextarea').maxLength(500);

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • jQuery Trim去除字符串首尾空字符的实现方法说明
  • jquery 删除字符串最后一个字符的方法解析
  • JQuery验证特殊字符实例
  • JQuery转义id中特殊字符的例子
  • jQuery文本框字符限制插件 Textarea Counter
  • jQuery.parseJSON(json)将JSON字符串转换成js对象
  • jquery禁止输入数字以外的字符的示例(纯数字验证码)
  • Jquery通过JSON字符串创建JSON对象
  • jquery验证特殊字符并转义
  • jquery解析xml字符串简单示例
  • jquery 字符串切割函数substring的用法说明
  • jquery全选、反选、将选中的表单值分割为字符串
  • jquery解析XML字符串和XML文件的方法说明
  • jquery如何把数组变为字符串传到服务端并处理
  • jQuery截取指定长度字符串代码
  • jQuery截取指定长度字符串的实现原理及代码
  • jQuery setTimeout传递字符串参数报错的解决方法
  • jquery解析xml字符串示例分享
  • 通过javascript库JQuery实现页面跳转功能代码
  • jQuery鼠标动画插件 jquery-ahover
  • jQuery概述,代码举例及最新版下载
  • jQuery向导插件 Jquery Wizard Plugin
  • Jquery操作html复选框checkbox:全选,全不选和反选
  • jQuery圆角插件 jQuery Corners
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • jQuery相册插件 jQuery.popeye
  • jQuery UI组件 jQuery UI
  • jQuery右键菜单插件 jQuery ContextMenu
  • jQuery分页插件 Pagination jQuery Plugin
  • jQuery日历插件 jQuery Week Calendar
  • jQuery的中文日历插件 jQuery.datePickerCn


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3