javascript函数调用在html中不起作用

时间:2017-04-24 14:50:25

标签: javascript html

我想从js文件中调用一个函数。该文件是main.js.功能是myfunction()。当我调用myfunction()时它不起作用。如何解决我的问题。请帮我。下面显示了我的代码

<!DOCTYPE html>
<html><body>
<h2>Web1</h2>
<script type="text/javascript" src="js/main.js">
   <!-- I want to call testing(); function here -->
//  alert("ff");  //It also not working
myFunction();
</script>
</body>
</html>

main.js

function myFunction() {
alert("ff");
}

0 个答案:

没有答案