这个jQuery代码的最后一行不起作用

时间:2011-05-20 04:01:12

标签: jquery

我已经设置了这个代码,出于某种原因,除了最后一行之外一切正常。

function getBlogs(element, url, limit, feed){
    jQuery(element).load(url+ ' .blog_list .module_body:lt('+ limit+ ')', function(){
        jQuery(this).prepend("<a class='home-rss' href='"+ feed+ "'></a>");
        jQuery(this).append("<a class='view-all-blogs' href='"+ url+"'>View More &raquo;</a>");
        // ** The following line isn't working: **
        jQuery(".tab-container .module_body .postbody").last("a").addClass("continue-link");
    });
}

var blogUrl = 'http://mysite.com/blog/list';
var feedUrl = '/profiles/blog/feed';
getBlogs('#all-blogs', blogUrl, 5, feedUrl);
getBlogs('#feat-blogs', blogUrl+ '?tag=featured', 5, feedUrl+ '?promoted=1');

jQuery(".tab_content").hide();
jQuery("ul.tabs li:first").addClass("active").show(); //Activate first tab
jQuery(".tab_content:first").show(); //Show first tab content

//On Click Event
jQuery("ul.tabs li").click(function() {
    jQuery("ul.tabs li").removeClass("active"); //Remove any "active" class
    jQuery(this).addClass("active"); //Add "active" class to selected tab
    jQuery(".tab_content").hide(); //Hide all tab content

    var activeTab = jQuery(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
    jQuery(activeTab).fadeIn(); //Fade in the active ID content
    return false;
});

jQuery("#column1").append("<ul class='tabs'><li class='news'><a href='#all-blogs'>News</a></li><li class='featured-blogs'><a href='#feat-blogs'>Featured Blogs</a></li></ul><div class='tab_container'><div id='all-blogs' class='tab_content'></div><div id='feat-blogs' class='tab_content'></div></div>");

具体来说,这一行没有添加该类:

jQuery(".tab-container .module_body .postbody").last("a").addClass("continue-link");

我有什么遗漏吗?

CNC中 这是受它影响的html:

<div class="postbody">
 <p><a href="link" target="_self"><img width="633" src="image"></a></p>
 <p>Title</p>
 <a href="link">Continue</a>
</div>

1 个答案:

答案 0 :(得分:0)

尝试:

jQuery(".tab-container .module_body .postbody").find("a").last().addClass("continue-link");

docs开始,last方法不会选择。

在某些地方,您还使用了班级名称tab_container,而在其他地方,您使用了tab-container。这无济于事。