通过layui获取表单中的数据

  1. layer.open({  
  2.       type: 2,  
  3.       title: '编辑音乐',  
  4.       shadeClose: false,  
  5.       shade: 0.8,  
  6.       btnAlign: 'c',  
  7.       area: ['480px''315px'],  
  8.      btn:['保存修改','取消修改'],  
  9.      yes:function(index,layero){  
  10.         var form = $(layero).find("iframe")[0].contentWindow.document.getElementById("editForm")  
  11.      },  
  12.      btn2:function(index,layero){  
  13.            
  14.      },  
  15.       content: [getActionUrlPrefix()+"toEditWin?model.mlId="+mlId, 'no']  
  16.     });  

你可能感兴趣的:(Layui)