美文网首页
7 Demo: DVD discs locator

7 Demo: DVD discs locator

作者: 闷油瓶小张 | 来源:发表于2015-10-15 14:38 被阅读15次

    This chapter covers

    • jQuery selectors
    • DOM traversal and manipulation
    • Attaching event handlers to DOM elements
    • Event delegation
    • Using custom events

    7.1 Putting events(and more) to work

    7.1.1 Filtering large data sets

    7.1.2 Element creation by template replication

    7.1.3 Setting up the mainline markup

    7.1.4 Adding new filters


    var movies;
    $.getJSON('movies.json', function(data) {
      movies = data;
      $(document).trigger('moviesLoader');
    });
    
    $(document).on('moviesLoaded', function() {
      //Business logic here
    });
    

    7.1.5 Adding the controls templates

    7.1.6 Removing unwanted filters and other tasks

    7.1.7 Showing the results


    $.grep()


    7.1.8 There's always room for improvement

    7.2 Summary

    相关文章

      网友评论

          本文标题:7 Demo: DVD discs locator

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