这里有两个文件在同一个文件夹中。我正在尝试调用一个名为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>
繁花如伊
米脂
相关分类