我正在使用这个http://rvera.github.io/image-picker/库,我不知道如何显示src图像的值。
你能帮帮我吗?
这是我的例子:
$("select.image-picker.show-labels").imagepicker({
hide_select: true,
show_label: true,
clicked:function(){
console.log($(this).find("img").attr("src"));
}
});
1条答案
按热度按时间krugob8w1#
这应该可以做到:
$(this)
$(this)
是选择输入,您将尝试查找已选择的选项并获取img-src数据属性。不过,您确定不应该只通过
$(this).val()
获取所选图像的ID吗?