如何使用JQuery .live()没有任何人为干预,即点击等?

时间:2011-09-23 16:27:59

标签: php jquery twitter marquee

这是我的代码,自动刷新包含从twitter中提取的推文的div:

var twittercacheData;
var twitterdata = $('#bottom-bar').html();
var twitterauto_refresh = setInterval(
function ()
{
    $.ajax({
        url: 'twitter.php',
        type: 'POST',
        data: twitterdata,
        dataType: 'html',
        success: function(twitterdata) {
            if (twitterdata !== twittercacheData){
                //data has changed (or it's the first call), save new cache data and update div
                twittercacheData = twitterdata;
                $('#bottom-bar').fadeOut("slow").html(twitterdata).fadeIn("slow");
            }           
        }
    })
}, 60000); // check every minute - reasonable considering time it takes 5 tweets to scroll across

唯一的一点就是在twitter.php中我这样做:

// initialise the marquee plugin so that we get a nice smooth scrolling effect
$('div.twitter marquee').marquee();

所以实际上我正在推送推文并将它们推入一个大帐篷并初始化Remy Shap rp的marquee插件,因为div正在刷新,我认为在初始刷新后没有初始化marquee插件,因为在第一次刷新工作完美后,firebug报告说:

marqueeState is undefined

我研究过使用.live(),但不知道要使用哪种事件类型,因为我想不出一个不需要用户交互的事件类型。

有什么想法吗?

3 个答案:

答案 0 :(得分:1)

尝试使用window.onload = functionName

答案 1 :(得分:1)

我会使用livequery插件并执行以下操作:

$('div.twitter marquee').livequery(function() {
   $(this).marquee();
});

或者您可以将custom events与.live()一起使用。

答案 2 :(得分:1)

如果你想要以编程方式触发的自定义事件,jQuery提供: http://fuelyourcoding.com/jquery-custom-events-they-will-rock-your-world/