> 'click .enable': function(e, value, row, index) {> var that = $(this);> > // console.log(row);> // console.log($(that).closest("tr").find(".stop"));> $(that).closest("tr").find(".stop").replaceWith('<span class="label label-success start">已启用</span>');> $(that).replaceWith('<a class = "disable btn blue btn-xs blue-stripe" href="javascript:void(0)">停用</a>');> console.log($(that));> > > > },> 'click .disable': function(e, value, row, index) {> var that = $(this);> > $(that).closest("tr").find(".start").replaceWith('<span class="label label-primary stop">已停用</span>');> $(that).replaceWith('<a class = "enable btn green btn-xs green-stripe" href="javascript:void(0)">启用</a>');> > }目前用了relaceWith方法替换所选择的元素,但是事件也销毁了,请问大家有什么好的办法。
添加回答
举报
0/150
提交
取消