jQuery(document).ready(function () { /*澶撮儴鎼滅储*/ if ($(window).width() < 748) { $('.searchBar a').click(function () { if ($(this).attr('id') != 'click') { $(this).attr('id', 'click'); $('.searchBar-m').show(); } else { $(this).removeAttr('id'); $('.searchBar-m').hide(); } }); } else { $('.searchBar a').click(function () { $('.searchBar-m').slideDown(); }); } $('.searchBar-m a').click(function () { $('.searchBar-m').hide(); }); /*寮瑰嚭鍙嬮摼*/ $('.friendlink,.popup-link').hover( function () { $(this).parent().find('ul').show(); }, function () { $(this).parent().find('ul').hide(); } ); $('.bandwidth-item').click(function () { // 绉婚櫎鎵€鏈夐」鐨刟ctive_band绫 $('.bandwidth-item').removeClass('active_band'); // 缁欏綋鍓嶇偣鍑荤殑椤规坊鍔燼ctive_band绫 $(this).addClass('active_band'); // 鑾峰彇褰撳墠椤圭殑绱㈠紩 var index = $(this).index(); // 鏍规嵁涓嶅悓鐨勭储寮曟浛鎹㈣棰戝拰鏍囬 var videoSrc = ''; var titleText = '瑙嗛/鍥惧儚鍘嬬缉10-100鍊嶏紝鑺傜渷90%浼犺緭甯﹀'; switch (index) { case 0: videoSrc = '/template/pc/skin/images/come_back_n.mp4'; titleText = '瑙嗛/鍥惧儚鍘嬬缉10-100鍊嶏紝鑺傜渷90%浼犺緭甯﹀'; // 淇敼鏍囬鏂囨湰 break; case 1: videoSrc = '/template/pc/skin/images/can_be_saved_n.mp4'; titleText = '瑙嗛/鍥惧儚鍘嬬缉10-100鍊嶏紝鑺傜渷90%瀛樺偍鎴愭湰'; // 淇敼鏍囬鏂囨湰 break; case 2: videoSrc = '/template/pc/skin/images/can_see_clearly_n.mp4'; titleText = '涓板瘜鐨勮棰戝寮?杩樺師鎶€鏈紝鍚勭鍦烘櫙鍘嬬缉鍚庤棰戦兘鐪嬪緱娓呮'; // 淇敼鏍囬鏂囨湰 break; } // 鏇挎崲瑙嗛鐨剆rc $('#bandvideo source').attr('src', videoSrc); // 閲嶆柊鍔犺浇瑙嗛骞舵挱鏀 $('#bandvideo')[0].load(); $('#bandvideo')[0].play(); // 鏇存柊鏍囬鏂囨湰 $('#handtitle').text(titleText); }); }); //鐧诲綍娉ㄥ唽tab function setTab(name, cursel, n) { for (i = 1; i <= n; i++) { var menu = document.getElementById(name + i); var con = document.getElementById('con_' + name + '_' + i); menu.className = i == cursel ? 'cur' : ''; con.style.display = i == cursel ? 'block' : 'none'; } }