vue for循环的数据 根据条件判断是否绑定事件

<liv-for="xxxxx":class="isBoolean?'disabled':''"><imgsrc="xxx.jpg"@click="xxx()"/></l... <li v-for="xxxxx" :class="isBoolean ? 'disabled' : '' ">
<img src="xxx.jpg" @click="xxx()"/>
</li>
如上所写
当我用v-for循环 循环一个数据 然后根据 isBoolean 的值 来判断是否添加class="disabled"时
怎么写 当class="disabled"时 不绑定click事件
怎么写比较简洁快速
展开
 我来答
heart阿飞55
2018-05-10 · TA获得超过1086个赞
知道大有可为答主
回答量:3030
采纳率:82%
帮助的人:560万
展开全部
GV绑定数据后,写一个for循环. for (int i = 0; i <= GridView1.Rows.Count - 1; i++) { Label lbl = (Label)GridView1.Rows[i].FindControl("Label3"); if (lbl.Text == "-1") { lbl.Text = "未开通"; lbl.ForeColor = System.Drawing.Color.Red; } } 或者: for (int i = 0; i <= GridView1.Rows.Count - 1; i++) { if (GridView1.Rows[i].Cells[1].Text=="-1") { GridView1.Rows[i].Cells[1].Text = "未开通"; GridView1.Rows[i].Cells[1].ForeColor=System.Drawing.Color.Red; } } 那你把这个for循环写进GridView_RowBound()事件里试试...还有,你确定你的是"label"么.而且label的ID是"Label3".
『Weirdo*Li』
2018-10-15
知道答主
回答量:1
采纳率:0%
帮助的人:1.4万
展开全部
为什么不在事件里面做判断呢?获取绑定的 isBoolean 的值,满足条件往下执行,不满足return false;
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式