所以我试图把https://codepen.io/Mike-was-here123/full/Ozbzqq/放到repl.it(这个项目) - > https://repl.it/@John_Nicole/EcstaticDarkorchidDegrees < - 点击运行
我的代码也适用于Brackets(codepen代码),所以它必须是repl?
现在有一些不明显的问题(不是):
<script src="index.js"></script>
这是我的所有链接&amp;事情,我真的需要澄清如何做到这一点:
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Your local weather</title>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="index.js"></script>
</head>
任何帮助都被接受了,如果你的表演就像这样的“菜鸟”,我很抱歉,但我们都在某处学习。我之前从未使用过这个区域,而且它是我较弱的HTML区域。
我从未包含过JavaScript代码,因为我认为它没有错,因为它适用于codepen。 API不能用于repl.it吗?
// Line 10
navigator.geolocation.getCurrentPosition(function(position) {
lon = position.coords.longitude;
lat = position.coords.latitude;
var api =
"https://fcc-weather-api.glitch.me/api/current?lat=" +
lat +
"&lon=" +
lon;
$.getJSON(api, function(data) {
答案 0 :(得分:0)
在 replt.it 中编辑html
页时,您犯了大错。
script tag
或body
中添加head
以添加external
js
个文件
但你在head
和body
tag
内加了两个。你需要删除
来自script
tag
的{{1}} head
。tag
。这是你的大错。您需要检查href="css/style.css"
write
代码的位置。 check
the image。您的自定义CSS
文件名不是CSS
index.css
。 repl.it 没有任何style.css
。喜欢
absolute file path
。如果您添加名为css/style.css
的新css
文件
应为custom.css
。我在repl.it为您创建了新的代码段,然后对其进行检查并进行比较。
根据user9319687评论。现在href="custom.css"
issue
未运行。不,JavaScript
正常运行是错误的。 repl.it 无法运行此JavaScript
。此 Google script
GEO
服务需要Location
服务器。 Open this link然后转到控制台。
[Deprecation] getCurrentPosition()和watchPosition()不再适用于不安全的起源。要使用此功能,您应该考虑将应用程序切换到安全的来源,例如HTTPS。有关详细信息,请参阅here。
需要有关https://
和HTTPS
问题的详情,请查看StackOverflow和Github
HTTP
中运行此项目,然后它将起作用。HTTPS server
中运行此项目,然后它将起作用。如果您因为localhost server
中codepen.io正在运行而考虑script
codepen.io的运行情况。