关于asp.net mvc 3:Displayin image with Ajax in Mvc3

Displayin image with Ajax in Mvc3

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

这是我的脚本:

$(function () {
$.ajax({
type:"get", url:"Home/Oku", data: {}, dataType:"json",
success: function (data) {

img src="" + data[0]"width="150px" height="150px"/> ????? How can i display

1
2
        }
    });


你应该这样做:

1
2
3
4
5
6
7
8
9
10
11
12
13
<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);
        }
 });

}