jquery trim() 功能源代码_jquery
程序员文章站
2022-05-10 16:35:25
...
复制代码 代码如下:
// Used for trimming whitespace
trimLeft = /^\s+/,
trimRight = /\s+$/,
// Use native String.trim function wherever possible
trim: trim ?
function( text ) {
return text == null ?
"" :
trim.call( text );
} :
// Otherwise use our own trimming functionality
function( text ) {
return text == null ?
"" :
text.toString().replace( trimLeft, "" ).replace( trimRight, "" );
},
分析:jquery trim() 作用是,删除字符串两边出现的空格;
其中的关键实现是text.toString().replace( trimLeft, "" ).replace( trimRight, "" );
是将传入的字符串分别两次调用replace,其中正则表达trimLeft是匹配左边的空格,trimRight是匹配右边的空格
推荐阅读
-
IE8下String的Trim()方法失效的解决方法_jquery
-
PHP结合jQuery.autocomplete插件实现输入自动完成提示的功能_PHP
-
php+jquery+ajax开发抽奖功能模块下载
-
PHP+jquery+ajax实现即时聊天功能实例
-
ASP.NET jQuery 实例12 通过使用jQuery validation插件简单实现用户注册页面验证功能_jquery
-
jQuery实现图片上传预览效果功能完整实例【测试可用】
-
S2SH整合JQuery+Ajax实现登录验证功能实现代码_jquery
-
jqgrid 编辑添加功能详细解析_jquery
-
jQuery做出菜单导航栏功能
-
php+jquery 实现搜索提示功能实例_PHP教程