javascript过滤数据,如ng-repeat过滤器

时间:2016-09-09 20:29:18

标签: javascript

我在原生javascript中实现自定义过滤器,有关如何根据角度example实现此过滤器的任何想法。

HTML

<input type="text" id="search" onChange='filter()'>

JS

List.prototype.init = function(list) {
    data = list;
    for(var i=0; i<data.length; i++) {
        var li = document.createElement('li');
        var h1 = document.createElement('h1');
        h1.appendChild(document.createTextNode(data[i].first));
        li.appendChild(h1);
        li.appendChild(document.createElement('p'));
        this.element.appendChild(li);
    }
};


var filter = function() {
      /// data is available here
}

0 个答案:

没有答案