AJax技术

你可能不知道的10个JavaScript小技巧(2)

字号+ 作者:H5之家 来源:H5之家 2016-05-13 12:00 我要评论( )

function createList() { var aLI = ["first item", "second item", "third item", "fourth item", "fith item"]; // Creates the fragment var oFrag = document.createDocumentFragment(); while (aLI.length) {

function createList() {   var aLI = ["first item", "second item", "third item",   "fourth item", "fith item"];   // Creates the fragment   var oFrag = document.createDocumentFragment();   while (aLI.length) {     var oLI = document.createElement("li");     // Removes the first item from array and appends it     // as a text node to LI element     oLI.appendChild(document.createTextNode(aLI.shift()));     oFrag.appendChild(oLI);   }   document.getElementById('myUL').appendChild(oFrag); }

9.为replace()方法传递一个函数

有的时候你想替换字符串的某个部分为其它的值,最好的方法就是给String.replace()传递一个独立的函数。下面是一个简单例子:

var sFlop = "Flop: [Ah] [Ks] [7c]"; var aValues = {"A":"Ace","K":"King",7:"Seven"}; var aSuits = {"h":"Hearts","s":"Spades", "d":"Diamonds","c":"Clubs"}; sFlop = sFlop.replace(/\[\w+\]/gi, function(match) {   match = match.replace(match[2], aSuits[match[2]]);   match = match.replace(match[1], aValues[match[1]] +" of ");   return match; }); // string sFlop now contains: // "Flop: [Ace of Hearts] [King of Spades] [Seven of Clubs]"

10.循环中标签的使用

有的时候,循环中又嵌套了循环,你可能想在循环中退出,则可以用标签:

outerloop: for (var iI=0;iI< 5;iI++) {   if (somethingIsTrue()) {   // Breaks the outer loop iteration   break outerloop;   }   innerloop:   for (var iA=0;iA< 5;iA++) {     if (somethingElseIsTrue()) {     // Breaks the inner loop iteration     break innerloop;   }   } }

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 关于想学习ajax ,但不知道如何去联系ajax,在哪练习的搜索推荐

    关于想学习ajax ,但不知道如何去联系ajax,在哪练习的搜索推荐

    2015-11-02 12:11

  • 小弟刚刚学习AJAX不知道哪本教材好一点?

    小弟刚刚学习AJAX不知道哪本教材好一点?

    2015-10-05 10:02

网友点评