0
我在我的websitesetTimeout()
中使用以下一段JavaScript,不會延遲調用5
秒的函數。setTimeout()不會延遲
function myFunction() {
param = $('#search').val();
//alert("I am an alert box!");
if (param != "") {
$("#status").show();
//alert("Show ");
var u = 'https://graph.facebook.com/search/?callback=&limit=5&q='+param;
$("#data").empty();
alert("Wait for 5 sec?");
setTimeout(getResults(u),50000); // this line
//getResults(u);
//alert("When myFunction runs show more line 20");
$("#more").show();
}
$("#more").click(function() {
$("#status").show();
//alert("Show ");
$("#more").hide();
pageTracker._trackPageview('/?q=/more');
var u = nexturl;
getResults(u);
});
}
+1鏈接到MDN文章 – 2013-03-13 06:34:04