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

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

Conditionals  Ìõ¼þ±í´ïʽ
    Similar in nature to loops, conditionals determine how execution flows through JavaScript. The traditional argument of whether to use if-else statements or a switch statement applies to JavaScript just as it does to other languages. Since different browsers have implemented different flow control optimizations, it is not always clear which technique to use.
    ÓëÑ­»·ÏàËÆ£¬Ìõ¼þ±í´ïʽ¾ö¶¨JavaScriptÔËÐÐÁ÷µÄ×ßÏò¡£ÆäËûÓïÑÔʹÓÃif-else»òÕßswitch±í´ïʽµÄ´«Í³¹ÛµãÒ²ÊÊÓÃÓÚJavaScript¡£ÓÉÓÚ²»Í¬µÄä¯ÀÀÆ÷Õë¶ÔÁ÷³Ì¿ØÖƽøÐÐÁ˲»Í¬µÄÓÅ»¯£¬Ê¹ÓÃÄÄÖÖ¼¼Êõ²¢²»×ÜÊǺÜÇå³þ¡£
if-else Versus switch  if-elseÓëswitch±È½Ï
    The prevailing theory on using if-else versus switch is based on the number of conditions being tested: the larger the number of conditions, the more inclined you are to use a switch instead of if-else. This typically comes down to which code is easier to read. The argument is that if-else is easier to read when there are fewer conditions and switch is easier to read when the number of conditions is large. Consider the following:
    ʹÓÃif-else»òÕßswitchµÄÁ÷ÐÐÀíÂÛÊÇ»ùÓÚ²âÊÔÌõ¼þµÄÊýÁ¿£ºÌõ¼þÊýÁ¿½Ï´ó£¬ÇãÏòÓÚʹÓÃswitch¶ø²»ÊÇif-else¡£Õâͨ³£¹é½áµ½´úÂëµÄÒ׶ÁÐÔ¡£ÕâÖÖ¹ÛµãÈÏΪ£¬Èç¹ûÌõ¼þ½ÏÉÙʱ£¬if-elseÈÝÒ×ÔĶÁ£¬¶øÌõ¼þ½Ï¶àʱswitch¸üÈÝÒ×ÔĶÁ¡£¿¼ÂÇÏÂÃ漸µã£º
if (found){
  //do something
} else {
  //do something else
}
switch(found){
  case true:
    //do something
    break;
  default:
    //do something else
}
    Though both pieces of code perform the same task, many would argue that the if-else statement is much easier to read than the switch. Increasing the number of conditions, however, usually reverses that opinion:
    ËäÈ»Á½¸ö´úÂë¿éʵÏÖͬÑùÈÎÎñ£¬ºÜ¶àÈË»áÈÏΪif-else±í´ïʽ±Èwitch±í´ïʽ¸üÈÝÒ×ÔĶÁ¡£Èç¹ûÔö¼ÓÌõ¼þÌåµÄÊýÁ¿£¬Í¨³£»áŤתÕâÖֹ۵㣺
if (color == "red"){
  //do


Ïà¹ØÎĵµ£º

javascript¼Ì³Ð·½Ê½Ö®¶þ

2¡¢Ô­ÐÍ·½Ê½Ð´À࣬ԭÐÍ·½Ê½¼Ì³Ð
core js×ÔÉíµÄ¶ÔÏóϵͳ¾ÍÊDzÉÓÃÔ­ÐÍ·½Ê½(prototype based)¼Ì³ÐµÄ¡£»òÕß˵core
jsûÓвÉÓó£¼ûµÄÀà¼Ì³Ð(class
based)ϵͳ£¬¶øÊÇʹÓÃÔ­Ðͼ̳ÐÀ´ÊµÏÖ×Ô¼ºµÄ¶ÔÏóϵͳ¡£¹¤×÷ÖÐÎÒÃÇÒ²¿ÉÒÔÓÃÔ­ÐÍ·½Ê½À´ÊµÏּ̳У¬´úÂ븴ÓÃÒÔ¹¹½¨×Ô¼ºµÄ¹¦ÄÜÄ£¿é¡£
/**
* ¸¸ÀàPolygon:¶à±ßÐÎ
*
*/
functio ......

JavaScriptʼþ´óÈ«

JavaScriptʼþ´óÈ«
 
 
click() ¶ÔÏó.click() ʹ¶ÔÏó±»µã»÷¡£
closed ¶ÔÏó.closed ¶ÔÏó´°¿ÚÊÇ·ñÒѹرÕtrue/false
clearTimeout(¶ÔÏó) Çå³ýÒÑÉèÖõÄsetTimeout¶ÔÏó
clearInterval(¶ÔÏó) Çå³ýÒÑÉèÖõÄsetInterval¶ÔÏó
confirm("ÌáʾÐÅÏ¢") µ¯³öÈ·ÈÏ¿ò£¬È·¶¨·µ»ØtrueÈ¡Ïû·µ»Øfalse
cursor:Ñùʽ ¸ü¸ÄÊó±êÑùÊ ......

Javascript¼ì²éÈÕÆÚ¸ñʽÊÇ·ñºÏ·¨µÄÒ»ÖÖ¼ò»¯·½·¨¡£

³£¹æµÄ·½·¨Êǽ«ÄêÔÂÈÕÈ¡³ö£¬È»ºó·Ö±ðÅжϷ¶Î§£¬È»ºó¾ÍÅжÏÈòÄê2ÔµÄÌìÊý
¿ÉÒÔͨ¹ýnew Date(string)µÄ¹¹Ô죬±È½ÏÄêÔÂÈÕ×Ö·ûÊÇ·ñ·¢Éú±ä»¯Åжϡ£
function CheckDate(text) {
if (!text) return false;
text = text.replace(/[\/-]0?/g, "/");
if (!text.match(/^\d{4}\/\d{1,2}\/\d{1,2}$/)) return true; ......

javascriptʵÏÖ×Ô¶¯ÇóºÍ

function total(){
var i=0;
for(j=1;j<=20;j++)
{
var step="step"+j;
if(document.getElementById(step)){
if(document.getElementById(step).checked==true)
{
i=i+parseInt(document.getElementById(step).value);
}
}
}
document.getElementById("total").innerHTML = i;
}
function Resetvalue(){
......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØͼ | ¸ÓICP±¸09004571ºÅ