简单的Cropper事件绑定

时间:2015-05-19 16:49:36

标签: javascript jquery event-handling crop

我正在尝试使用图片上传/裁剪插件simple cropper。我有它工作正常但我正在动态插入没有获得事件绑定的类<LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1.1"> 的元素。我已将大部分点击事件更改为使用.cropme而非.on()。有什么我想念的吗?

.click()

1 个答案:

答案 0 :(得分:0)

我需要清理我的代码,但这是我改变它以使其工作的原因:

this.on('click', function () {
  aspX = $(this).width();
  aspY = $(this).height();
  file_display_area = $(this);
  $('#fileInput').click();
});

$('body').on('click', '.cropme', function () {
  aspX = $(this).width();
  aspY = $(this).height();
  file_display_area = $(this);
  $('#fileInput').click();
});