如何从外部javascript文件调用我的html文档中的函数?
答案 0 :(得分:5)
当外部javascript包含在页面中时,它可以访问页面上的每个函数以及页面中包含的其他JS文件中的函数。
这假设没有任何函数包含在命名空间中......
答案 1 :(得分:1)
Javascript文件:
function functionName()
{
some code to be executed
}
HTML:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<button onclick="functionName()">Try it</button>
</body>
</html>