我什么都没有关于如何运行javascript代码[关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我什么都没有关于如何运行javascript代码[关闭]相关的知识,希望对你有一定的参考价值。
function showPosition(position)
var latlon = position.coords.latitude + "," + position.coords.longitude;
var img_url = "http://maps.googleapis.com/maps/api/staticmap?center=" +
latlon + "&zoom=14&size=400x300&sensor=false";
document.getElementById("html.net").innerHTML = "<img src='" + img_url + "'>";
如果在html文件中如何在浏览器上运行此代码?或者如果没有,还有其他办法吗?
答案
将其放入HTML文件并将其保存为file.html
或任何您想要命名的内容
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My First HTML Page</title>
</head>
<body>
Check out this map
<div id="output"></div>
<script>
function showPosition(position)
var latlon = position.coords.latitude + "," + position.coords.longitude;
var img_url = "http://maps.googleapis.com/maps/api/staticmap?center=" +
latlon + "&zoom=14&size=400x300&sensor=false";
document.getElementById("output").innerHTML = "<img src='" + img_url + "'>";
//now we run the code
showPosition(
coords:
lattitude: 12345,
longitude: 12345
)
</script>
</body>
</html>
以上是关于我什么都没有关于如何运行javascript代码[关闭]的主要内容,如果未能解决你的问题,请参考以下文章