在微信界面,动态显示一个<view>应该如何操作?
<view bind:tap="editTask" class='operation_img'> <image src='../../image/edit.jpg' ></image> </view> .operation_img{ height: 15px; width:15px; float: right; margin-right: 5px; display: none; } editTask:function(e){ //如何在这里设置图片的显示呢? }