刚开始使用 GWD - 还不错。我控制了大部分,(实际上通常最终通过 DreamWeaver 直接编辑代码而不是 GWD),但不知道如何设置礼貌加载加载图像。任何人都知道如何使用图像填写这些空白logo1.png
?我已经尝试了很多东西,但它总是让整个交易失败。
以下是 Google 提供的初始化代码的相关部分:
/**
* Handles the event that is dispatched after the Ad has been
* initialized and before the default page of the Ad is shown.
*/
function handleAdInitialized(event) {
// This marks the end of the polite load phase of the Ad. If a
// loading image was shown to the user, this is a good place to
// remove it.
}
window.addEventListener('DOMContentLoaded',
handleDomContentLoaded, false);
window.addEventListener('WebComponentsReady',
handleWebComponentsReady, false);
window.addEventListener('adinitialized',
handleAdInitialized, false);
})();