Layui 表格编辑


html代码

class="My_edit">

Jquery代码

//-----[Layui表格编辑()] 
function Layui_edit(){
   //点击时 选中文本 $(
".My_edit").live("click",function(){ $(this).toggle(function(){ var text=$(this).html(); $(this).html(''+text+'">'); $(this).children("input").val("").focus().val(text); $(this).children("input").select(); },function(){ $(this).html($(this).children("input").val()); }) }) //数据可编辑 $(".My_edit").toggle(function(){ var text=$(this).html(); $(this).html(''+text+'">'); $(this).children("input").val("").focus().val(text); $(this).children("input").select(); },function(){ $(this).html($(this).children("input").val()); }) //数据编辑失去焦点失效 $(".layui-table-edit").live("blur",function(){ var text=$(this).val(); $(this).parent().html(text); }) } //-----[Layui表格编辑END]