在通过php返回链接之前显示图像

时间:2013-08-25 11:22:29

标签: jquery image hyperlink

我想在通过php返回的链接之前显示图像。 下面是ajax代码

$.ajax({ //Make the Ajax Request
    type: "POST",
    url: "dbtryout2_2.php",
    data: datastr,
    success: function (arrayphp) {
        //how to display image before this link
        var link = $('<a href="#" class="my-class">' + arrayphp + '</a>');
        $(".searchby .searchlist").append(link);

    }
});

1 个答案:

答案 0 :(得分:0)

只需在链接前附加图片。

$.ajax({ //Make the Ajax Request
    type: "POST",
    url: "dbtryout2_2.php",
    data: datastr,
    success: function (arrayphp) {
        //how to display image before this link
        var link = $('' + arrayphp + '');
        var image = "<img src='http://www.yourdomain.com/iamge.png' alt='' />"
        $(".searchby .searchlist").append(image).append(link);

    }
});