gpt4 book ai didi

Javascript 从外部站点获取 html

转载 作者:行者123 更新时间:2023-11-28 12:41:11 26 4
gpt4 key购买 nike

我不知道这是否可能或允许,但基本上我想去 http://www.nfl.com/scores并获取特定一周的分数。似乎每个游戏都有一个特定的类别,如果我可以访问他们的 html,我可以轻松地了解分数和团队。我想我需要使用 AJAX 或 JSON 或某种组合。谢谢!

更新:

代理.php

<html>
<head>
</head>

<body>
<?php
$url = "http://www.nfl.com/scores/2012/PRE1http://www.nfl.com/scores/2012/PRE1";
$htm = file_get_contents($url);
echo $htm;
?>
</body>
</html>

nflScores.php

<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>

<body>
<p></p>
<script type="text/javascript">
$.get("proxy.php", function(response) {
alert(response) });
</script>
</body>
</html>

我的警报框似乎充满了大量的 html。我可以使用某种 .getElementByID() 方法来查找某些元素吗?

谢谢

最佳答案

由于 XHR 的 same-origin policy.,这是不可能的

检查 NFL 是否有可用于获取分数的 API。看this question 。他们似乎没有发布 API,但您仍然可以收集信息。

关于Javascript 从外部站点获取 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12132240/

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