为什么会是死循环了?代码如下
WXML: <block wx:for="{{array}}" wx:key="item"> <view class="dis_flex" style="flex-direction:row;"> <view> <button class='font_12' id="{{[index]}}" bindtap='hs_分数页'> <text>《{{item.timuname}}》成绩:{{item.fenshu}}\n</text> <text>时间:{{item.kaoshitime}}\n</text> </button> </view> <view> <button class='font_12' id="{{[index]}}" bindtap='hs_删除数据'>X</button> </view> </view> </block> js部分: hs_删除数据: function(e) { var 序列号 = e.currentTarget.id var 临时成绩 var k =9 var j =0 console.log(k) console.log(序列号) while (j = 序列号){ j++ console.log(j) } },