顶部的内联脚本在页面上的所有iframe加载后执行

时间:2016-12-02 15:35:54

标签: javascript html iframe pagespeed google-pagespeed

我在顶部附近的网页上内嵌了此代码:

console.log('Script executed');

这是脚本标记内的唯一一行。该页面还会加载5个不同的iframe。我希望脚本尽快执行,但似乎在所有iframe加载之后它才会执行。 Aren的脚本应该在浏览器遇到它们后立即执行?我错过了什么吗?

这是我的页面结构:

<head>
  All Meta Tags. Stylesheet Links.
</head>
<body>
  Some HTML code.
  <iframe>1 iframe</iframe>
  More HTML.
  <script>console.log('Script Executed');</script>
  More HTML.
  <iframe>4 iframes</iframe>
  More HTML.
</body>

0 个答案:

没有答案