我是靠谱客的博主 美满冰棍,最近开发中收集的这篇文章主要介绍argument.callee问题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天写了段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问题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部