美文网首页
列表搜索排序

列表搜索排序

作者: 苏叶的小城堡 | 来源:发表于2018-07-11 09:18 被阅读0次

    见下方代码:

    function renderList(templateInfos) {

      var html = str;

      for (var i = 0, l = templateInfos.length; i < l; i++) {

        if (templateInfos[i].status == 1) {

          var buttonName = templateInfos[i].name;

          html += ['<li>',buttonName,'</li>'

    ].join("")

        }

      }

      buttonwrapper.innerHTML = html;

    }

    function change(){

      let searchInputText = document.getElementById('searcher-text');

      let value = searchInputText.value;

      let newArr = result.filter((arr)=>{ return arr.name.indexOf(value) === -1 ? false : true})

      if(!value) renderList(result);

      renderList(newArr);

    }

    相关文章

      网友评论

          本文标题:列表搜索排序

          本文链接:https://www.haomeiwen.com/subject/oqbcpftx.html