0

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

这是我的脚本:

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

img src="" + data[0] "width="150px" height="150px"/> ????? 怎么显示

        }
    });
4

1 回答 1

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);
        }
 });

}

于 2012-08-05T15:15:28.410 回答