在Mvc 3中使用Ajax显示图像

时间:2012-08-05 15:05:08

标签: asp.net-mvc-3

我正在尝试在脚本中显示图像。我从动作控制器获取数据并尝试在img src =中添加我的数据名称?那么如何用我的数据显示图像呢?

这是我的剧本:

  

$(function(){           $就({               type:“get”,url:“Home / Oku”,data:{},dataType:“json”,               成功:功能(数据){

     

img src =“”+ data [0]“width =”150px“height =”150px“/> ?????我该如何显示

        }
    });

1 个答案:

答案 0 :(得分:0)

你应该这样做:

<img id="myimage" alt="Im being loaded with ajax"/>

$(function () { 
$.ajax({ 
    type: "get", 
    url: "Home/Oku", 
    data: {}, 
    dataType: "json",
    success: function (data) {
        //sets the 'src' attribute for the image tag with id 'myimage'.
        $("img#myimage").attr("src", data);
        }
 });

}