我目前已经安装了prettyphoto并设法通过页面加载启动iframe

$(document).ready(function(){


添加延迟的最快方法是什么?

最佳答案

javascript中的window.setTimeout函数易于使用。

你可能会做类似的事情

$(document).ready(function(){
    $('#photo').prettyphoto(); //Not sure how you call prettyphoto
}


在拨打电话之前添加延迟:

$(document).ready(function(){
    //The call to callPrettyPhoto will only be made after 1 second
    window.setTimeout(callPrettyPhoto, 1000 );
});

function callPrettyPhoto() {
    $('#photo').prettyphoto();
}


请注意,如果您愿意,也可以将函数内联:

$(document).ready(function(){
    window.setTimeout(function() {
        $('#photo').prettyphoto();
    }, 1000);
});

关于jquery - prettyphoto添加延迟,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5570478/

10-11 14:39