; var product_index_ops = { init: function () { this.eventBind(); }, eventBind: function () { //婊戝姩鏃堕殣钘忎簩绾ц彍鍗 $(window).scroll(function(){ var scrollHeight = $(window).scrollTop(); if(scrollHeight > 0){ $(".tabbar-two").hide(); }else{ $(".tabbar-two").show(); } }); var oImages = document.getElementsByClassName("banner"); var oImgs = oImages[0].getElementsByClassName('banner-list'); var oUl = document.getElementsByClassName("tabbar-two-list"); var oLi = oUl[0].getElementsByTagName('li'); for (let i = 0; i < oLi.length; i++) { // console.log(oLi[i]) oLi[i].onclick = function() { // console.log('闂鍦ㄨ繖閲屽悧') for (let i = 0; i < oLi.length; i++) { console.log(oImgs[i]) oLi[i].className = ''; oImgs[i].style.display = "none" } oLi[i].className = "liColor"; oImgs[i].style.display = "block" } } } }; $(document).ready(function () { product_index_ops.init(); });