Home  >  Article  >  Web Front-end  >  How to use layui data to add the front-end layout of the page? (Source code attached)

How to use layui data to add the front-end layout of the page? (Source code attached)

慕斯
慕斯Original
2021-05-19 18:22:106266browse

This article teaches you how to use layui data to add the front-end layout of the page. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How to use layui data to add the front-end layout of the page? (Source code attached)

layui data addition page front-end layout

1. On the homepage Add a student information to the form, the code is as follows:

<title>学生信息添加</title>
      <script src="../public/jquery-1.8..js"></script>
      <script src="../public/layui/layui.js"></script>
      <link rel="stylesheet" href="../public/layui/css/layui.css">

2. Add from form

 <form class="layui-form"> <!-- 提示:如果你不想用form,你可以换成div等任何一个普通元素 -->
  <div class="layui-form-item">
    <label class="layui-form-label">姓名</label>
    <div class="layui-input-block">
      <input type="text" number="" placeholder="请输入" autocomplete="off" class="layui-input">
    </div>
  </div>
   <div class="layui-form-item">
    <label class="layui-form-label">学号</label>
    <div class="layui-input-block">
      <input type="text" name="" placeholder="请输入" autocomplete="off" class="layui-input">
    </div>
  </div>
  <div class="layui-form-item">
    <label class="layui-form-label">性别</label>
    <div class="layui-input-block">
      <input type="checkbox" name="like[write]" title="写作">
      <input type="checkbox" name="like[read]" title="阅读">
    </div>
  </div>
  <div class="layui-form-item">
    <label class="layui-form-label">开关关</label>
    <div class="layui-input-block">
      <input type="checkbox" lay-skin="switch">
    </div>
  </div>
  <div class="layui-form-item">
    <label class="layui-form-label">开关开</label>
    <div class="layui-input-block">
      <input type="checkbox" checked lay-skin="switch">
    </div>
  </div>
  <div class="layui-form-item">
    <label class="layui-form-label">单选框</label>
    <div class="layui-input-block">
      <input type="radio" name="sex" value="0" title="男">
      <input type="radio" name="sex" value="1" title="女" checked>
    </div>
  </div>
  <div class="layui-form-item layui-form-text">
    <label class="layui-form-label">请填写描述</label>
    <div class="layui-input-block">
      <textarea placeholder="请输入内容" class="layui-textarea"></textarea>
    </div>
  </div>
  <div class="layui-form-item">
    <div class="layui-input-block">
      <button class="layui-btn" lay-submit lay-filter="*">立即提交</button>
      <button type="reset" class="layui-btn layui-btn-primary">重置</button>
    </div>
  </div>
  <!-- 更多表单结构排版请移步文档左侧【页面元素-表单】一项阅览 -->
</form>
<script></script>
<script>
layui.use(&#39;form&#39;, function(){
  var form = layui.form;
  
  //各种基于事件的操作,下面会有进一步介绍
});
</script>
</body>
</html>

3. Get the student information to add The front-end page

How to use layui data to add the front-end layout of the page? (Source code attached)

Related recommendations: layui tutorial

The above is the detailed content of How to use layui data to add the front-end layout of the page? (Source code attached). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn