我正在创建一个函数,我可以在其中执行一些 jquery 代码......然后暂停说...... 5 秒,然后执行其他东西..
像这样的东西:
function myFunc() {
var str1 = 'This is the starting text';
var str2 = 'This is the ending text';
$("#label").html(str1);
//I need a pause here (5000 ms) ---
$("#label").html(str2);
}
我怎样才能在那里停下来?