为什么 Modernizer 不使用 var 作为 ret 变量

发布于 2024-12-08 12:20:34 字数 188 浏览 1 评论 0原文

我正在研究现代化库的源代码,我想知道为什么他们不在第二行代码中使用关键字 var 作为变量 ret ?他们使用在其上方声明变量 version 时会使用它,但对于 ret 则不然。任何人都可以解释为什么他们不使用关键字 var 吗?

I was studying the source for the modernizer library and I"m wondering why they don't use the keyword var for the variable ret in the second line of code? They use it when declaring the variable version right above it, but not for ret. Can anyone explain why they wouldn't use the keyword var?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

勿挽旧人 2024-12-15 12:20:34

他们确实使用var关键字。他们只使用一次,然后让它应用于他们在程序开始时定义的所有变量(这是 JS 编程的常见模式)。

var version = '2.0.6', // This is a comma, not a semi-colon.
Modernizr = {},

…哎呀,虽然这是第二行代码,但它不是您正在谈论的行。不过原理是一样的。

They do use the var keyword. They just use it once and let it apply to all the variables they define at the start of the program (which is a common pattern for JS programming).

var version = '2.0.6', // This is a comma, not a semi-colon.
Modernizr = {},

… and whoops, while that is the second line of code, it isn't the line you were talking about. The principle is the same there though.

潇烟暮雨 2024-12-15 12:20:34

ret 是用 injectElementWithStyles() 声明顶部的 var 定义的:

// Inject element with style element and some CSS rules
injectElementWithStyles = function( rule, callback, nodes, testnames ) {

  var style, ret, node,
      div = document.createElement('div');
  // ...
  // ...
  // ...

  return !!ret;
}

ret is defined with a var at the top of the injectElementWithStyles() declaration:

// Inject element with style element and some CSS rules
injectElementWithStyles = function( rule, callback, nodes, testnames ) {

  var style, ret, node,
      div = document.createElement('div');
  // ...
  // ...
  // ...

  return !!ret;
}
云仙小弟 2024-12-15 12:20:34

我没有分析整个脚本,但一般来说,当您希望变量具有全局作用域时,您可以跳过“var”声明。

更多信息:http://www.w3schools.com/js/js_variables.asp

I haven't analyzed the entire script, but in general you skip the "var" declaration when you want the variable to have a global scope.

More info: http://www.w3schools.com/js/js_variables.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文