2012-04-03 7 views
0

を取得し、それを出力すべき映画の名前を、年、および1がある場合があり、(映画のポスターのURLを取得jQueryのJSONPリクエストは、私が<a href="http://kleague.org/test/" rel="nofollow">http://kleague.org/test/</a></p> <p>タイプのムービー名で簡単なスクリプトを持ってOK 403エラー

さて、私はそれを試したところ、画像に403エラーがあります。それはイメージを得たがそれはそれを表示しなかった。私は間違って何をしていますか?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 

<head> 
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" /> 


    <title>IMDB api</title> 

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> 
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script> 


    <script type="text/javascript"> 
    $(document).ready(function() 
{ 




$('#search').click(function(){ 

$(".loading").css("display", "inline"); 


     var yourMovie = $("#movie").val(); 
    $("#debug").append("You are searching for ... "+yourMovie+"\n"); 

dataString = "callback=?&t=" +yourMovie; 

$.getJSON('http://www.imdbapi.com/', dataString, function(html){ 

$(".loading").css("display", "none"); 

    var movieSugg = html.Title; 
    var movieYear = html.Year; 
    var movieImg = html.Poster; 

$("#movieposter").attr("src", movieImg); 
$("#movieposter").css("display", "inline"); 

$("#more").append("You found: " + movieSugg + " ("+movieYear+") ["+movieImg+"] \n"); 
}); 

}); 


}); 
</script> 

</head> 
<body> 

<img src="" alt="Poster" id="movieposter" style="display: none;float:left;margin-right:10px;" /> 
<form method="get" action="#" enctype="text/html" > 
<input type="text" id="movie" maxlength="50" /> <a href="#" id="search">Search now!</a> <img alt="Searching..." style="display: none;" class="loading" src="ajax-loader.gif" title="Searching..." /> 

</form> 

<div id="other"> 

    Trigger the handler 
</div> 
<br /> 
<textarea id="debug" style="width: 500px;height:150px;border:1px solid black;font-face:typewriter;"></textarea><br /> 
<textarea id="more" style="width: 500px;height:150px;border:1px solid red;font-face:typewriter;"></textarea> 

</body> 
</html> 

答えて

1

JSONPでは、関数/スクリプトを返す必要があります。 AJAXを介して画像を読み込むことは役に立たない。画像自体を追加するだけで、そのトリックができます。

<img src="{html.poster here}" /> 
+0

私は家に帰るときにそれを試してみます。ありがとう。私は現在、山を登るつもりです。キリマンジャロですので、私はしばらくの間、コンピュータ(またはインターネット!)にアクセスすることはできません。私に運が欲しい!再度ありがとう、Topener! – nn2

関連する問題

 関連する問題