修改函数或从字符串评估函数
这是我目前拥有的:
test(function(){
console.dir('testing');
});
// Input a function
function test(fn){
console.dir(fn.toString().replace('dir','log'));
// console: function (){console.log('testing');}
// try to evaluate string back to a function
eval(fn.toString().replace('dir','log'));
}
我可以修改某个函数中的某些东西吗(例如,'测试'到'hello world')
或评估功能的修改后的字符串回到一个函数?
谢谢
尝试这个:
test(function(){
console.dir('testing');
alert('done');
});
// Input a function
function test(fn){
console.dir(fn.toString().replace('dir','log'));
// console: function (){console.log('testing');}
// try to evaluate string back to a function
var f;
eval('f = ' + fn.toString().replace('dir','log'));
f();
}
以下代码产生相同的结果:
function test(action, fn) {
fn(action);
}
test('log', function (action) {
console[action]('testing');
});
链接地址: http://www.djcxy.com/p/2877.html
上一篇: Modify a function or evaluate a function from string
下一篇: How and why does 'a'['toUpperCase']() in JavaScript work?