gpt4 book ai didi

javascript - GetDistance Javascript 在有一些参数值时不返回任何内容

转载 作者:行者123 更新时间:2023-12-03 07:20:40 25 4
gpt4 key购买 nike

我正在尝试从此函数中获取结果。但是,我的页面上没有返回任何内容,只是“此示例调用执行计算并返回结果的函数:”。我需要这个函数从属性表中获取数据库中的每个邮政编码并找到距离。另外,一个邮政编码设置为始终相同,因此我需要设置它,而另一个邮政编码将是属性表中的邮政编码。

<?php

include ("../connect.php");

?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>

<body>
<p>This example calls a function which performs a calculation, and returns the result:</p>

<p id="demo"></p>

<script type="text/javascript">
var x = getDistance(52.482799000000000, -2.000643000000000, 52.48463500000000, -1.980759000000000);
function getDistance($latitude1, $longitude1, $latitude2, $longitude2) {
$earth_radius = 6371;

$postLat = deg2rad($latitude2 - $latitude1);
$postLon = deg2rad($longitude2 - $longitude1);

$a = sin($postLat/2) * sin($postLat/2) + cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * sin($postLon/2) * sin($postLon/2);
$c = 2 * asin(sqrt($a));
$d = $earth_radius * $c;
//$distance_miles = $km * 0.621371; //distance in miles
return $d;
document.getElementById("demo").innerHTML = x;

}
</script>

</body>
</html>

最佳答案

你在哪里使用 x 变量?

我期望这样的事情:

<p>This example calls a function which performs a calculation, and returns the result:
<div id="result">
</div>
</p>

var x = getDistance(52.482799000000000, -2.000643000000000, 52.48463500000000, -1.980759000000000);
$('#result').text(x);

关于javascript - GetDistance Javascript 在有一些参数值时不返回任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36234233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com