如何通过jQuery获取当前的img src

时间:2016-08-26 05:38:21

标签: jquery wordpress

我正在使用wordpress的小部件,现在我需要选择上传图片。但是我的输入字段中没有添加图像链接(src)。

这是我的Jquery:

 window.send_to_editor = function(html){
        var imglink = jQuery('img',html).attr('src');
        jQuery('.img1').val(imglink);
        tb_remove();
    }

但是当我使用这段代码时,没有html

window.send_to_editor = function(){
        var imglink = jQuery('img').attr('src');
        jQuery('.img1').val(imglink);
        tb_remove();
    }

然后我得到了这个src链接

http://0.gravatar.com/avatar/9269ac5e9e06aa762e2c5a497007806f?s=26&d=mm&r=g

但是我希望获得我在我的小部件中插入的当前img链接。

1 个答案:

答案 0 :(得分:0)

也许这会对你有所帮助:

$(this).attr("src", urlAbsolute);

Demo on jsbin