已单击imagepicker jQuery回调

sdnqo3pr  于 2022-11-03  发布在  jQuery
关注(0)|答案(1)|浏览(132)

我正在使用这个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"));
  }
});
krugob8w

krugob8w1#

这应该可以做到:
$(this)
$(this)是选择输入,您将尝试查找已选择的选项并获取img-src数据属性。
不过,您确定不应该只通过$(this).val()获取所选图像的ID吗?

相关问题