码迷,mamicode.com
首页 > 其他好文 > 详细

LayUI示例代码

时间:2020-07-26 00:53:31      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:htm   lin   异常   tle   link   button   des   word   error:   

1. 文件上传

doc

<!DOCTYPE html>
<html>
<head>
  
  <title>upload模块快速使用</title>
  <link rel="stylesheet" href="/static/build/layui.css" media="all">
</head>
<body>

<button type="button" class="layui-btn" id="test1">
  <i class="layui-icon">&#xe67c;</i>上传图片
</button>

<script src="/static/build/layui.js"></script>
<script>
layui.use(‘upload‘, function(){
  var upload = layui.upload;

  //执行实例
  var uploadInst = upload.render({
    elem: ‘#test1‘ //绑定元素
    ,url: ‘/upload/‘ //上传接口
    ,done: function(res){
      //上传完毕回调
    }
    ,error: function(){
      //请求异常回调
    }
  });
});
</script>
</body>
</html>

LayUI示例代码

标签:htm   lin   异常   tle   link   button   des   word   error:   

原文地址:https://www.cnblogs.com/brt2/p/13377728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!