JavaScript的漂亮的代码片段_javascript技巧
new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) )
来自sizzle,动态构建正则时,这样做避免了字符转义。
更灵活和巧妙的数字补零
function prefixInteger(num, length) {
return (num / Math.pow(10, length)).toFixed(length).substr(2);
}
取数组的最大和最小值
Math.max.apply(Math, [1,2,3]) //3
Math.min.apply(Math, [1,2,3]) //1
产生漂亮的随机字符串
Math.random().toString(16).substring(2); //8位
Math.random().toString(36).substring(2); //16位
获取时间戳
相对于
var timeStamp = (new Date).getTime();
如下方式更方便:
var timeStamp = Number(new Date);
转换为数值并取整
var result = '3.1415926' | 0; // 3
字符串格式化
function format(format) {
if (!FB.String.format._formatRE) {
FB.String.format._formatRE = /(\{[^\}^\{]+\})/g;
}
var values = arguments;
return format.replace(
FB.String.format._formatRE,
function(str, m) {
var
index = parseInt(m.substr(1), 10),
value = values[index + 1];
if (value === null || value === undefined) {
return '';
}
return value.toString();
}
);
}
使用:
format('{0}.facebook.com/{1}', 'www', 'login.php');
//-> www.facebook.com/login.php
交换两个变量的值
var foo = 1;
var bar = 2;
foo = [bar, bar=foo][0];
RegExp Looping
String.prototype.format = function ( /* args */ ) {
var args = arguments;
return this.replace(
/\{(\d+)\}/g,
function (full, idx) {
return args[idx];
} )
}
'Hello {0}, How{1}'.format( 'Bob', ' you doin');
// => Hello Bob, How you doinhttp://mazesoul.github.com/Readability_idioms_and_compression_tolerance/#31.0
定义即运行函数
( function() {
// do something
} )();
这确实是最简单的技巧,但也是最实用的技巧。 奠定了JavaScript封装的基础。
三元运算
var some = con1 ? val1 :
con2 ? val2 :
con3 ? val3 :
defaultVal;
一种函数注册-调用机制
来自CKEditor,我做了提取。
( function() {
var fns = [];
// 将可用下标访问属性的对象转换成数组
// 注意,IE下DOMNodeList会失败
function toArray( arrayLike, index ) {
return Array.prototype.slice.call( arrayLike, index || 0 );
}
window.Util = {
'addFunction' : function( fn, scope ) {
return fns.push( function(){
return fn.apply( scope || window, arguments );
} ) - 1;
},
'removeFunction' : function( index ) {
fns[ index ] = null;
},
'callFunction' : function( index ) {
var fn = fns[ index ];
return fn && fn.apply( window, toArray( arguments, 1 ) );
}
};
} )();
// 应用场景
var fnId;
// 在闭包中,添加一个可供全局调用的函数
( function() {
fnId = Util.addFunction( function( msg ) {
alert( msg );
} );
} )();
// 调用
Util.callFunction( fnId, 'Hello, World' ); //-> 'Hello,World';
短路运算
var something = 'xxxx';
console.log( true && something ); //-> 'xxx';
console.log( false && something ); //-> false
console.log( true || something ); // -> true
console.log( false || something ); //-> something
推荐阅读
-
用于deeplink的js方法(判断手机是否安装app)_javascript技巧
-
javascript下搜索子字符串的的实现代码(脚本之家修正版)_javascript技巧
-
日常收集整理的JavaScript常用函数方法_javascript技巧
-
使用Firebug对js进行断点调试的图文方法_javascript技巧
-
asp.net中System.Timers.Timer的使用方法_javascript技巧
-
javascript中获取选中对象的类型_javascript技巧
-
js实现的四级左侧网站分类菜单实例_javascript技巧
-
PHP中输出转义JavaScript代码的实现代码_PHP教程
-
利用Javascript判断操作系统的类型实现不同操作系统下的兼容性_javascript技巧
-
JavaScript异步编程Promise模式的6个特性_javascript技巧