Skip to main content

Home/ InfokeyDEV/ Group items tagged coding-style

Rss Feed Group items tagged

15More

A re-introduction to JavaScript - MDC - 1 views

  • var name = o && o.getName();
  • var name = otherName || "default";
  • The first argument to apply() is the object that should be treated as 'this'.
  • ...9 more annotations...
  • apply() has a sister function named call, which again lets you set 'this' but takes an expanded argument list as opposed to an array.
  • Closures
  • A closure is the combination of a function and the scope object in which it was created. Closures let you save state - as such, they can often be used in place of objects.
  • An unfortunate side effect of closures is that they make it trivially easy to leak memory in Internet Explorer.
  • The above code sets up the element to turn red when it is clicked. It also creates a memory leak. Why? Because the reference to el is inadvertently caught in the closure created for the anonymous inner function. This creates a circular reference between a JavaScript object (the function) and a native object (el).
  • delete el;
  • var clickHandler = function() { this.style.backgroundColor = 'red'; } (function() { var el = document.getElementById('el'); el.onclick = clickHandler; })();
  • Surprisingly, one trick for breaking circular references introduced by a closure is to add another closure:
  • It's useful to start with an idea of the language's history. JavaScript was created in 1995 by Brendan Eich, an engineer at Netscape, and first released with Netscape 2 early in 1996. It was originally going to be called LiveScript, but was renamed in an ill-fated marketing decision to try to capitalise on the popularity of Sun Microsystem's Java language — despite the two having very little in common. This has been a source of confusion ever since.
  •  
    Chinese new year animals horoscope2016 Happy Chinese new year 2016 messages & quotes Happy new year 2016 greetings for Chinese Chinese new year 2016 funny poems
  •  
    Chinese new year animals horoscope2016
    Happy Chinese new year 2016 messages & quotes
    Happy new year 2016 greetings for Chinese
    Chinese new year 2016 funny poems
3More

Javascript - Event order - 0 views

  • When you use event capturing | | ---------------| |----------------- | element1 | | | | -----------| |----------- | | |element2 \ / | | | ------------------------- | | Event CAPTURING | ----------------------------------- the event handler of element1 fires first, the event handler of element2 fires last. Event bubbling When you use event bubbling / \ ---------------| |----------------- | element1 | | | | -----------| |----------- | | |element2 | | | | | ------------------------- | | Event BUBBLING | ----------------------------------- the event handler of element2 fires first, the event handler of element1 fires last.
  • addEventListener() method explained on the Advanced models page. If its last argument is true the event handler is set for the capturing phase, if it is false the event handler is set for the bubbling phase.
  • In the Microsoft model you must set the event’s cancelBubble property to true. window.event.cancelBubble = true In the W3C model you must call the event’s stopPropagation() method. e.stopPropagation()

buy nike kd 7 easy money and the tags and style code number are 100 - 0 views

started by huhu789 on 19 Nov 14 no follow-up yet

nike kd 7 calm before the storm for sale admire her style - 0 views

started by mg81591 on 30 Sep 14 no follow-up yet

cheap nike air foamposite pro volt every other thursday - 0 views

started by hanhan789 on 18 Dec 14 no follow-up yet

buy nike what the kd 7 after deciding to buy the slippers - 0 views

started by linlin1023 on 15 Jun 15 no follow-up yet

nike kd 7 for sale casual and classic golf shoes - 0 views

started by hanhan789 on 08 Jan 15 no follow-up yet

nike flyknit lunar 3 wholesale putting ourselves as much in harm way - 0 views

started by lshfang on 27 Mar 15 no follow-up yet

jordan 6 retro sport blue do away with traveling aau teams - 0 views

started by zhanhu on 14 Nov 14 no follow-up yet

nike kd 7 for sale i kept on saying i needed to clean the bird cage - 0 views

started by yanglily1223 on 29 Sep 14 no follow-up yet

what the kobe 9 for sale saying he can't play defense - 0 views

started by lisfang on 08 May 15 no follow-up yet

buy air jordan 4 teal of women aged 2039 cynthia - 0 views

started by linlnina on 13 May 15 no follow-up yet

air jordan 4 teal for sale is completing his 12th season - 0 views

started by linlnina on 22 Apr 15 no follow-up yet

air jordan 5 white metallic women offer minimal support - 0 views

started by gxijue on 01 Jun 15 no follow-up yet

nike free for cheap northern territory nt - 0 views

started by shidai on 31 Oct 14 no follow-up yet
1 - 20 of 26 Next ›
Showing 20 items per page