Ò׽ؽØͼÈí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

[·­Òë]High Performance JavaScript(008)

Nested Members  ǶÌ׳ÉÔ±
    Since object members may contain other members, it's not uncommon to see patterns such as window.location.href in JavaScript code. These nested members cause the JavaScript engine to go through the object member resolution process each time a dot is encountered. Figure 2-12 shows the relationship between object member depth and time to access.
    ÓÉÓÚ¶ÔÏó³ÉÔ±¿ÉÄÜ°üº¬ÆäËü³ÉÔ±£¬ÀýÈ粻̫³£¼ûµÄд·¨window.location.hrefÕâÖÖģʽ¡£Ã¿Óöµ½Ò»¸öµãºÅ£¬JavaScriptÒýÇæ¾ÍÒªÔÚ¶ÔÏó³ÉÔ±ÉÏÖ´ÐÐÒ»´Î½âÎö¹ý³Ì¡£Í¼2-12ÏÔʾ³ö¶ÔÏó³ÉÔ±Éî¶ÈÓë·ÃÎÊʱ¼äµÄ¹Øϵ¡£
Figure 2-12. Access time related to property depth
ͼ2-12  ·ÃÎÊʱ¼äÓëÊôÐÔÉî¶ÈµÄ¹Øϵ
    It should come as no surprise, then, that the deeper the nested member, the slower the data is accessed. Evaluating location.href is always faster than window.location.href, which is faster than window.location.href.toString(). If these properties aren't on the object instances, then member resolution will take longer as the prototype chain is searched at each point.
    ½á¹û²¢²»Ææ¹Ö£¬³ÉԱǶÌ×Ô½É·ÃÎÊËÙ¶ÈÔ½Âý¡£location.href×ÜÊÇ¿ìÓÚwindow.location.href£¬¶øºóÕßÒ²Òª±Èwindow.location.href.toString()¸ü¿ì¡£Èç¹ûÕâЩÊôÐÔ²»ÊǶÔÏóµÄʵÀýÊôÐÔ£¬ÄÇô³ÉÔ±½âÎö»¹ÒªÔÚÿ¸öµãÉÏËÑË÷Ô­ÐÎÁ´£¬Õ⽫ÐèÒª¸ü³¤Ê±¼ä¡£
Caching Object Member Values  »º´æ¶ÔÏó³ÉÔ±µÄÖµ
    With all of the performance issues related to object members, it's easy to believe that they should be avoided whenever possible. To be more accurate, you should be careful to use object member only when necessary. For instance, there's no reason to read the value of an object member more than once in a single function:
    ÓÉÓÚËùÓÐÕâЩÐÔÄÜÎÊÌâÓë¶ÔÏó³ÉÔ±Óйأ¬ËùÒÔÈç¹û¿ÉÄܵĻ°Çë±ÜÃâʹÓÃËüÃÇ¡£¸üÈ·ÇеØ˵£¬ÄãÓ¦µ±Ð¡Ðĵأ¬Ö»ÔÚ±ØÒªÇé¿öÏÂʹÓöÔÏó³ÉÔ±¡£ÀýÈ磬ûÓÐÀíÓÉÔÚÒ»¸öº¯ÊýÖжà´Î¶Áȡͬһ¸ö¶ÔÏó³ÉÔ±µÄÖµ£º
function hasEitherClass(element, className1, className2){
  return element.c


Ïà¹ØÎĵµ£º

javascriptЧÂʾ­Ñé̸(Ò»)

±¾ÎÄÖ÷ÒªÊdzöÓÚÓÐÅóÓÑʹÓÃÎÒÔ­À´Ð´µÄautocompleteµÄJS¿Ø¼þ¡£µ±Êý¾ÝÁ¿´óµÄʱºò£¬»á³öÏÖЧÂʼ«ÆäÂýµÄÇé¿ö£¬ÎÒÔÚÕâ¶Îʱ¼ä×ö³öµÄһЩ²âÊÔÒ²¼°Ò»Ð©¾­Ñ飬Óë´ó¼Ò·ÖÏí£¬Èç¹ûÓдíµÄµØ·½£¬»¹ÇëÖ¸³ö¡£
¾­¹ý²âÊÔ£¬ÎÒÃǻᷢÏÖÈçϵÄÇé¿ö»òÕß˵µÄ½áÂÛ£¬Èç¹ûÄúµÄ²âÊÔ½á¹ûÓëÎҵIJ»·û£¬Çë˵Ã÷Ô­Òò£¬ÒÔ±ãÏ໥ѧϰ¡£
1£©µ±Ò»¸ö½Ï´óµÄHTML×Ö· ......

JavaScriptʵÏÖÒ³Ãæ´«Öµ

ÎÒ»¹ÊDzËÄñ£¬Çë´ó¼Ò¶àÖ¸½Ì£¡
Ò³ÃæÒ»£º
<html>
 <head>
  <title> Ò³Ãæ´«ÖµÒ» </title>
  <script>
    function funShow()
 {
    var arr=new Array(6);
       var arrs = showModalDialog("Ò³ ......

javascriptÈëÃÅ»ù´¡ÖªÊ¶

javascriptÈëÃÅ»ù´¡ÖªÊ¶
ÎÄÕÂÔ´ÓÚ²©¿Í£ºhttp://www.cnblogs.com/seesky/articles/1433526.html
ÔÚÍøÕ¾ÖÆ×÷µÄ¹ý³ÌÖо­³£ÐèÒªÓõ½JavaScriptÓï¾ä£¬ÕÆÎÕһЩÏà¹ØµÄJavaScript½á¹¹¶ÔÍøÕ¾ÖÆ×÷ÓÐ×ÅÖصÄÖØÓã¡
1.document.write(""); Êä³öÓï¾ä
2.JSÖеÄ×¢ÊÍΪ//
3.´«Í³µÄHTMLÎĵµË³ÐòÊÇ:document->html->(head,body)
......

firefoxÓëIE¶ÔjavascriptºÍCSSµÄÇø±ð

1. document.formName.item("itemName") ÎÊÌâ
˵Ã÷:IEÏÂ,¿ÉÒÔʹÓÃdocument.formName.item("itemName")»òdocument.formName.elements["elementName"];
FirefoxÏÂ,Ö»ÄÜʹÓÃdocument.formName.elements["elementName"].
½â¾ö·½·¨:ͳһʹÓÃdocument.formName.elements["elementName"].
2.¼¯ºÏÀà¶ÔÏóÎÊÌâ
˵Ã÷:IEÏÂ,¿É ......

[·­Òë]High Performance JavaScript(007)

Dynamic Scopes  ¶¯Ì¬×÷ÓÃÓò
    Both the with statement and the catch clause of a try-catch statement, as well as a function containing eval_r(), are all considered to be dynamic scopes. A dynamic scope is one that exists only through execution of code and therefore cannot be det ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØͼ | ¸ÓICP±¸09004571ºÅ