jQuery-UI小部件/控件可进行Twitter UI的更新吗?

| 我需要找到一个jQuery-UI小部件/控件来进行类似Twitter UI的更新。我的意思是,当Twit出现时,它会取代列表中的操作者,从而将其他人向下推到浏览器用户界面中。有谁知道这样的小部件或失败的小部件,如何用Javascript完成? 谢谢     
已邀请:
在jquery中很简单... 的HTML
<div id=\"tweets\">
    <div>Tweet 1</div>
    <div>Tweet 2</div>
</div>
javascript
$(function() {
  //Get new tweet however
    var newtweet = \"New Tweet\"

    $(\"<div>\"+newtweet+\"</div>\").prependTo(\"#tweets\").hide().slideDown(200);
});
    
确切的功能确实取决于您。没有任何理由使用任何类型的插件,因为它是进行基础设置的真正简单的javascript。
function addItem(title, text)
{
    var pHTML = [\'<div class=\"container\">\',
                    \'<div class=\"title\">\',
                        title,
                    \'</div><div class=\"description\">\',
                        text,
                    \'</div></div>\'].join(\'\');
    // You\'d do any animates here. 
    //  You could also drop the bottom item in the list here, if so desired.
    $(\'#box-wrapper\').prepend(pHTML); 
}
    
如果您不想编写任何js,可以将以下建议添加到组合中: http://thomasbillenstein.com/jTweetsAnywhere/demo/ http://tweet.seaofclouds.com/ 祝好运!     

要回复问题请先登录注册