7 Demo: DVD discs locator

2015-10-15  本文已影响15人  闷油瓶小张

This chapter covers

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

上一篇 下一篇

猜你喜欢

热点阅读