先我们来看利用trim去除空格
代码如下 | 复制代码 |
// 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, "" ); }, |
方法利用正则表达式来去掉空格方法
代码如下 | 复制代码 |
$("input[type=text]").change(function(){ $('input[type=text]:not(:disabled)').each(function(){ var str = $(this).val(); str = str.replace(/s/g,""); $(this).val(str); }); }); |
时间: 2024-09-19 13:11:44