我想讓一個Javascript文件由另一個加載,但我希望第二個文件在延遲後加載。我需要添加什麼才能延遲?在JS文件中設置延遲以調用JS文件
$(document).ready(function() {
var script = document.createElement('script');
script.src = "https://lib.store.yahoo.net/lib/yhst-136932942155053/BongoCheckout.Yahoo.2.js";
document.getElementsByTagName('body')[0].appendChild(script);
});
https://developer.mozilla.org/en/docs/Web/API/window.setTimeout – Quentin