我一直在尝试在AMP页面中包含一个javascript文件,但每次尝试都会失败
<amp-iframe width="200" height="100px"
layout="responsive" sandbox="allow-scripts allow-same-origin"
src="https://laraflat.000webhostapp.com/public/js/index2.js">
</amp-iframe>
但无法加载此脚本中的函数
答案 0 :(得分:1)
AMP禁止使用外部JavaScript库。您只能使用原生AMP组件的脚本。
JavaScript功能强大,它可以修改几乎所有方面 页面,但它也可以阻止DOM构造和延迟页面呈现 (另请参阅使用JavaScript添加交互性)。保持JavaScript 通过延迟页面呈现,AMP只允许异步JavaScript。
有关详细信息,请访问here