javascript 获取函数形参个数
更新时间:2014年07月31日 11:04:24 投稿:whsnow
本节主要介绍了javascript获取函数形参个数的具体实现,需要的朋友可以参考下
/** * 获取函数的形参个数 * @param {Function} func [要获取的函数] * @return {*} [形参的数组或undefind] */ function getFuncParameters(func) { if (typeof func == 'function') { var mathes = /[^(]+\(([^)]*)?\)/gm.exec(Function.prototype.toString.call(func)); if (mathes[1]) { var args = mathes[1].replace(/[^,\w]*/g, '').split(','); return args; } } }
最新评论