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)这里获取不到

胡子哥哥
浏览 659回答 1
1回答

精慕HU

seeMoreIndexNum是个匿名函数的内部变量,你定义一个,跟当前代码同级作用域的变量好了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript