概述
今天写了段js代码,然后用jshint测试了下,提示了一个建议: avoid arguments.callee
具体代码我是这么写的:
...
(function (){
$(this).animate({"marginTop":"35px","opacity":0.7},800)
.delay(400)
.animate({"marginTop":"5px","opacity":1},800);
$(this).queue(arguments.callee); //再入队列
$(this).dequeue();
})
arguments.callee -- This property is deprecated by ECMA-262 in favor of named function expressions and for better performance.
解决方法很简单
function handle(){
...
//avoid arguments.callee
//$(this).queue(arguments.callee); //再入队列
$(this).queue(handle); //use the function name
...
}
stackoverflow有篇文章说这个:
http://stackoverflow.com/questions/8361642/arguments-callee-is-deprecated-what-should-be-used-instead
有兴趣可以了解下为什么少用argument.callee??
转载于:https://www.cnblogs.com/lgmcolin/archive/2013/05/17/3083945.html
最后
以上就是美满冰棍为你收集整理的argument.callee问题的全部内容,希望文章能够帮你解决argument.callee问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复