猿问

如何将 Javascript 文件链接到另一个 Javascript 文件

这里有两个文件在同一个文件夹中。我正在尝试调用一个名为greet of app1in的函数app2。


应用程序1.html


<script>

  function greet() {

    alert('hello from App1')

  }

  // greet() // commented out code

</script>

应用程序2.html


<script type="text/javascript" src="./app1.html"></script>

<script>

  function app2() {

    alert('app2')

  }

  app2()

  greet() // this line of code is not working

</script>


扬帆大鱼
浏览 69回答 2
2回答

繁花如伊

如果您想在另一个js文件中调用该文件,则必须在调用文件中引用该文件。前任。请参阅参考资料部分中的文件head。&nbsp; <head>&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; <script src="File2.js" type="text/javascript"></script>&nbsp;&nbsp; &nbsp; <script src="File1.js" type="text/javascript"></script>&nbsp;&nbsp; </head>你可以让你的body标签像这样:<body>&nbsp; <script type="text/javascript">&nbsp; &nbsp;Method2(); // Where you want to call method from another JS.&nbsp; </script>&nbsp;</body>然后,使用第一个文件文件1.jsfunction Method1(number) {&nbsp; alert("Method1");}文件2.jsfunction Method2() {&nbsp;Method1("Method1 is called in Method2");&nbsp;}

米脂

我建议使用单独的外部 js 文件而不是嵌入<script>标签,但这也许可以帮助
随时随地看视频慕课网APP

相关分类

Html5
我要回答