2

可能かどうかはわかりませんが、サーバーに画像があり、$.ajax関数を介してjqueryモバイルアプリにダウンロードして表示したいです。使用しているコードは次のとおりです。

$.ajax({
type: "GET",
url: $url,
dataType: "jpeg",
async: true,
timeout: 90000,
success: function($data)
    {   
 console.log("success");

},
error: function()
   {
console.log("failure");
}


});

エラーが発生し、これが正しいアプローチかどうかわかりません

4

1 に答える 1

0

AJAX で画像をダウンロードするのはあまり意味がありません。おそらく、 `mg のsrc属性を設定する必要があるだけですelement:

<div id="example">Example</div>
<script>
  var url = 'http://lorempixel.com/output/abstract-q-c-64-48-8.jpg'; // URL of the image
  $('#example').click(function() {
    $('<img>') // create a new image element
       .attr('src', url) // set src
       .appendTo(this);
  });
</script>​

作業例: http://jsfiddle.net/zrbRM/

于 2012-08-10T11:48:50.973 に答える