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 下载图像没有多大意义。您可能只需要设置srcìmg 的属性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 回答