product.js 730 Bytes
(function ($) {
    
    //手机端产品功能框插入到标题之后
	$('#function .row .box').on('click', function() {
				
		var index = $("#function .row .box").index(this);
		$("#function .function-item").hide();
		
		$("#function .row .box").removeClass("active");
		$(this).addClass("active");
				
		if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i))) {
			$("#function .function-item:eq("+index+")").fadeIn();
			$("#function .function-item:eq("+index+")").insertAfter($(this));			
        } else {
			$("#function .function-item:eq("+index+")").fadeIn();
        }
		
	});
	
	
})(jQuery);