how to change the status of the current icon when clicked
<view class="audiobox" wx:for="{{data}}">
<image bindtap="audioPlay" src="{{playState}}" ></image>
js part
audioPlay(e) {
this.setData({
playState: "https://wxapp.xxx.cn/image/pause.png",
autoplay: true
})
}