我正在打包我的JavaScript

alert("Loaded out")

function showLoaded() {
    alert("Loadedin")
}


尝试调用从HTML加载的函数showload

<!DOCTYPE html>
<html>
  <head>
      <script type="text/javascript" src="./bundle.js"></script>
  </head>
<body>
<script>showLoaded()</script>
</body>
</html>


警报显示正在加载,但似乎无法调用函数showLoaded()。
我在这里错过明显的东西吗?

最佳答案

您还可以通过以下方式公开您的函数:

alert("Loaded out");

function showLoaded() {
    alert("Loadedin");
}

window.showLoaded = showLoaded;

关于javascript - Webpack。在窗口级别调用Javascript函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52031389/

10-11 14:03