标签:
$(function() {
$(‘.hb_table‘).live(‘click‘, function(e) {
e.stopPropagation();
$(this).children(‘p‘).hide();
$(this).children(‘.aa‘).show();
$(document).on(‘click‘, function() {
e.stopPropagation();
$(‘.aa‘).hide();
$(‘.hb_table p‘).show();
});
});
});
标签:
原文地址:http://www.cnblogs.com/zhouyx/p/4721564.html