我想从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");
}