我有我的網站檢查另一個網站的價值,並返回結果。如果我有一定的價值,我想讓我的網頁重定向我。如果某個值是某個數字,是否可以重定向到網頁?
這可能嗎?
這是我的代碼。 `
<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/2fd6657d79448494/geolookup/conditions/q/IA/Cedar_Rapids.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>
我們將需要以幫助您完成此一點點信息。你是否在查看另一個第三方網站的價值,或者你是否在檢查自己的網站的價值? –
你應該指定語言和你必須這樣做的原因。 – TyrionGraphiste