$(document).ready(function ($) {
var _winw = $(window).width();
// 手机导航
$('.menuBtn').append('');
$('.menuBtn').click(function (event) {
$(this).toggleClass('open');
$('.h-r').stop().slideToggle();
});
if (_winw > 1200) {
$('.h-nav li').hover(function () {
$(this).addClass('ok');
if ($(this).find('.sub').length) {
$(this).find('.sub').stop().slideDown();
}
}, function () {
$(this).removeClass('ok');
$(this).find('.sub').stop().slideUp();
});
$('.h-top .so').on('click', function (e) {
e.stopPropagation();
$('.h-so').stop().slideToggle();
});
$('.h-so').on('click', '.inp', function (e) {
e.stopPropagation();
});
$('body').on('click', function (e) {
$('.h-so').stop().slideUp();
});
} else {
$('.h-nav li').unbind('mouseenter mouseleave')
$('.h-nav .v1').click(function () {
$(this).siblings('.sub').stop().slideToggle().parents('li').toggleClass('ok').siblings('li').removeClass('ok').find('.sub').stop().slideUp();
if ($(this).siblings('.sub').length) {
$(this).attr('href', 'javascript:;')
}
});
}
// 选项卡 鼠标点击
$(".TAB_CLICK li").click(function () {
var tab = $(this).parent(".TAB_CLICK");
var con = tab.attr("id");
var on = tab.find("li").index(this);
$(this).addClass('on').siblings(tab.find("li")).removeClass('on');
$(con).eq(on).show().siblings(con).hide();
});
$('.TAB_CLICK').each(function (index, el) {
if ($(this).find('li.on').length) {
$(this).find("li.on").trigger('click');
} else {
$(this).find("li").filter(':first').trigger('click');
}
});
/**单选多选 */
$('[role=radio]').each(function () {
var input = $(this).find('input[type="radio"]'),
label = $(this).find('label');
input.each(function () {
if ($(this).attr('checked')) {
$(this).parents('label').addClass('checked');
$(this).prop("checked", true)
}
})
input.change(function () {
label.removeClass('checked');
$(this).parents('label').addClass('checked');
input.removeAttr('checked');
$(this).prop("checked", true)
})
});
$('[role=checkbox]').each(function () {
var input = $(this).find('input[type="checkbox"]');
input.each(function () {
if ($(this).attr('checked')) {
$(this).parents('label').addClass('checked');
$(this).prop("checked", true);
}
});
input.change(function () {
$(this).parents('label').toggleClass('checked');
});
});
/**单选多选end */
// 返回顶部
$('.g-backtop').click(function (e) {
e.stopPropagation();
$("body,html").animate({
scrollTop: 0
},
500);
});
// 侧边三级菜单
$('.snv .link').on('click', function () {
if ($(this).siblings('.snv-sub').length) {
$(this).attr('href', 'javascript:;');
$(this).siblings('.snv-sub').stop().slideToggle().parents('li').toggleClass('act');
}
});
$('.snv-sub .a').on('click', function () {
if ($(this).siblings('.snv-three').length) {
$(this).attr('href', 'javascript:;');
$(this).siblings('.snv-three').stop().slideToggle().parents('.two').toggleClass('act');
}
});
});