我是 JavaScript 环境的新手。我已阅读该<script> </script>
标签可以放置在文档的<head> </head>
或<body></body>
标签中。但是当我在输出<script>
下放置标签时<head></head>
是不同的。请查看代码:-
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction(a,b)
{
return a*b;
}
document.getElementById("demo").innerHTML=myFunction(4,3);
</script>
</head>
<body>
<p>This example calls a function which perfoms a calculation, and returns the result:</p>
<p id="demo"></p>
</body>
</html>
输出:- 此示例调用执行计算并返回结果的函数:
而如果<script></script>
放在下面,<body></body>
那么我会得到不同的输出。请找到代码和以下输出:-
<!DOCTYPE html>
<html>
<body>
<p>This example calls a function which perfoms a calculation, and returns the result:</p>
<p id="demo"></p>
<script>
function myFunction(a,b)
{
return a*b;
}
document.getElementById("demo").innerHTML=myFunction(4,3);
</script>
</body>
</html>
输出:-
此示例调用执行计算的函数并返回结果:
12
非常感谢任何帮助。