我不知道这是否可能或允许,但基本上我想去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() 方法来查找某些元素吗?
谢谢