Layui 表格编辑


html代码

<td class="My_edit"></td>

 

Jquery代码

//-----[Layui表格编辑()] 
function Layui_edit(){
   //点击时 选中文本 $(
".My_edit").live("click",function(){ $(this).toggle(function(){ var text=$(this).html(); $(this).html('<input type="text" style="min-height:24px;" class="layui-input layui-table-edit" value="'+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('<input type="text" style="min-height:24px;" class="layui-input layui-table-edit" value="'+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]

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM