$(function(){
$('.cate-list').on('click', '.arrow-click', function(e) {
e.preventDefault();
var _div = $(this).parent().find('.map-category-list');
if (_div.length > 0) {
if (_div.hasClass("show")) {
$(this).removeClass('arrow-03');
_div.stop().removeClass('show');
} else {
$(this).addClass('arrow-03');
_div.stop().addClass('show');
}
return false;
}
window.location.href = $(this).attr('href');
});
})
网友评论