我在这里遇到问题,试图将一些信息从我的 html 文件的头部(在 JavaScript 中)传输到我想在正文中的 div 中创建的表。我想知道是否可以将信息从头部传递到身体。比如说,要创建一个表并让输入数据是一些在头部声明的变量。
我也有一个函数,我想从该函数传输输出并将其输入到表中。这是我拥有的一些代码。
<html>
<head>
<script language="JavaScript">
theta = Math.random() * 2 * Math.PI;
r1 = Math.random() * R;
r2 = R + (Math.random() * 100);
ray = r1 + (Math.random() * (r2 - r1));
point = [ray*Math.cos(theta), ray*Math.sin(theta)];
var distance = funciton(x1, y1, R, x2, y2) {
return (Math.sqrt(Math.pow((y2 - y1), 2) + Math.pow((x2 - x1), 2))) - R;
};
</script>
</head>
<body>
<div>
</div>
</body>