最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Unusual if (a in b) JavaScript syntax? - Stack Overflow

programmeradmin0浏览0评论

I have just stumbled upon the following webpage and am somewhat intrigued by the use of the in keyword.

.html

  • Is this valid JavaScript?
  • Do all browsers accept this?
  • How does it actually work?

They are using this syntax for fallback when web browser doesn't support the autofocus attribute. So this would lead me to believe that this syntax is valid.

I have just stumbled upon the following webpage and am somewhat intrigued by the use of the in keyword.

http://diveintohtml5.ep.io/examples/input-autofocus-with-fallback.html

  • Is this valid JavaScript?
  • Do all browsers accept this?
  • How does it actually work?

They are using this syntax for fallback when web browser doesn't support the autofocus attribute. So this would lead me to believe that this syntax is valid.

Share Improve this question edited Oct 6, 2011 at 18:48 DanBeale 3104 silver badges15 bronze badges asked Aug 19, 2011 at 15:06 Lea HayesLea Hayes 64.3k16 gold badges69 silver badges118 bronze badges 2
  • 1 duplicate of stackoverflow./questions/2920765/… – Hyangelo Commented Aug 19, 2011 at 15:10
  • @Marc thanks for pointing that out, very detailed explanation. MDN is a good resource. – Lea Hayes Commented Aug 19, 2011 at 15:15
Add a ment  | 

3 Answers 3

Reset to default 5

The in operator checks if a property is defined on an object. So, this is valid Javascript and is accepted in almost all browsers.
In this case, the code is checking if "autofocus" is a property of a new element. If it is, then most likely the browser supports autofocus and will not need .focus() (or someone may be extending prototypes).

You can think of it like this:

"localStorage" in window; // true
!!window["localStorage"]; // true
window["localStorage"] !== undefined; // true

These statements are basically the same.

"autofocus" is an arbitrary boolean attibute that the script looks for. It's really no different than <input id="q" class="autofocus">, except in this case, the script would need to look for the class name (which a lot of validation scripts usually use) versus the attribute.

The browser doesn't "support" it, the script makes it work.

发布评论

评论列表(0)

  1. 暂无评论