我输入了一些代码,以便我可以测量某个位置的当前温度。我有一个脚本,允许我的用户检查位置,但警报不起作用。
<h3> Weather Data </h3>
<form method="POST" action="about.php">
<input type="text" name="city" value= 'city'/>
<input type="submit" name="submit" value="submit" />
</form>
<?php
$city=$_POST['city'];
var_dump($city);
?>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script>
jQuery(document).ready(function($) {
$.ajax({
url : "http://api.wunderground.com/api/5e8af95dbdebbd73/geolookup/conditions/forecast/q/UK/<?php echo $city; ?>.json",
dataType : "jsonp",
success : function(parsed_json) {
var location = parsed_json['location']['city'];
var temp_f = parsed_json['current_observation']['temp_f'];
alert("Current temperature in " + location + " is: " + temp_f);
}
});
});
?>
</script>
警报应该出现但我什么都不做错。
答案 0 :(得分:3)
在结束脚本标记之前有一个不必要的关闭php标记:
}
});
});
?> // this is a problem!
</script>