🔥 创建切换商品分类状态的JS文件 🔥
; var food_act_ops={ init:function(){ this.eventBind(); }, eventBind:function(){ //表示作用域 var that = this; $(".wrap_search select[name=status]").change(function(){ $(".wrap_search").submit(); }); $(".remove").click(function(){ that.ops("remove",$(this).attr("data")); }); $(".recover").click(function(){ that.ops("recover",$(this).attr("data")); }) console.log(1); }, }; $(document).ready(function(){ food_act_ops.init(); });
🔥 商品分类布局里面引入js文件依赖 🔥
{% block js %} <sc