如果要包括史蒂夫,约翰,鲍比和彼得,如何将其转换为数组?

getBlogs('#all-blogs', blogUrl+ '?user=steve', 5, feedUrl);


-编辑-更多信息

这就是现在使用javascript设置的方式。

function getBlogs(element, url, limit, feed){
        jQuery(element).load(url+ ' .blog_list:lt('+ limit+ ')', function(){

            jQuery(".postbody p:first").replaceWith(function() {
                return jQuery(this).contents();
            });
        });
    }

    var blogUrl = 'http://mysite.com/profiles/blog/list';
    var feedUrl = '/profiles/blog/feed';
    getBlogs('#all-blogs', blogUrl+ '?user=steve', 5, feedUrl);


基本上,我想在其中包括john,bobby和peter的博客文章。

最佳答案

getBlogs('#all-blogs', blogUrl+ '?user=steve,john,bobby,peter', 5, feedUrl);


然后在服务器上以逗号分隔

07-24 17:14