JQ函数值传递问题

 $('.seeMoreProduct').click(function(){
            var seeMoreIndexNum = ($('.seeMoreProduct').index($(this)));
        });
        var $newDesignSection = $('#designer_detail_con');
        if($(".designer_ul").length > 0) {
            $(".designer_ul").on("click",".ui_scroll_con > li",function(){
                var $this = $(this);
                $.ajax({
                    url: $this.attr('dataUrl'),
                    dataType: 'html',
                    success: function(data){
                        $newDesignSection.html(data);
                    }
                });

            }).find('.designer_List').eq(seeMoreIndexNum).click();
        } 

希望能做获取到seeMoreIndexNum的值,('.designer_List').eq(seeMoreIndexNum)这里获取不到

阅读 1.6k
1 个回答

seeMoreIndexNum是个匿名函数的内部变量,你定义一个,跟当前代码同级作用域的变量好了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题