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