Der Code lautet wie folgt
var f = function(call,args){ call(args); }
Bei der Ausführungf(console.log,123)的时候没问题但执行f(loaction.reload,true)就报错了错误信息如下Uncaught TypeError: Illegal invocation
f(console.log,123)
f(loaction.reload,true)
Uncaught TypeError: Illegal invocation
f(loaction.reload.bind(location),true)
说明reload方法不能脱离location这个对象执行。
for instance:
location.reload.call(location, true)
说明reload方法不能脱离location这个对象执行。
for instance: