1$('form')
2 .children()
3 .filter(function(){
4 return $(this).data('show') === 'pro';
5 })
6 .show();
7$('form')
8 .children()
9 .filter(function(){
10 return $(this).data('show') === 'home';
11 })
12 .hide();
1$('.test').hide().filter('[data-word="AAA"][data-type="BBB"][data-number="2"]').show();