我下面的html文件试图调用roundChimney.js,但浏览器空白
<!DOCTYPE html>
<html>
<head>
<title>Chimney Volume</title>
<script src='roundChimney.js' ></script>
</head>
<body>`enter code here`
<script> alert(roundChimney(5,5));</script>
</body>
</html>
roundChimney的代码是
function roundChimney(radius, height) {
var volume = radius * height;
return Math.ceil(volume));
}
答案 0 :(得分:0)
由于括号,该函数无法正常工作,应该有两个括号,而不是三个返回Math.ceil(volume)
$value = get_field('post_status_field', $post_id);
立即尝试。
答案 1 :(得分:-1)
您必须设置.js文件的相对路径,例如:
<script src="../Script/roundChimney.js">
通过这种方式,我假设您的应用程序文件夹包含一个index.html和一个Script文件夹,其中包含一个roundChimney.js文件。