# 页面进入触发点击事件

 
//关键代码
$(window).on('load', function() {
	  $('.warfare_nav .swiper-slide').eq(param).trigger('click'); // 触发点击事件
	});

 
 
  
//逻辑代码
 $(".warfare_nav .swiper-slide").click(function(){		
	//console.log('123123')
 	var _bg=$(this).attr("data-bg");
	$("body").css("background-image","url('"+_bg+"')");	
		$(this).parent().find(".on").removeClass("on");
		$(this).addClass("on");
		
		// console.log(param,'cc'); 
		var _index=$(this).index()
        
        
        
        }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
上次更新: 5/30/2023, 14:13:25