Introduction to common form layout in layui framework
There are two common form layout methods that we often use. The vertical layout method has been provided in the layui document. We will also use the horizontal layout method when we do the backend. , used when searching at the top of the page. Recommended: layui tutorial
Let’s take a look at the implementation of horizontal and vertical form lists:
1. Horizontal typesetting
html:
<div class="mainTop layui-clear"> <div class="fl"> <button type="button" class="layui-btn layui-btn-blue">新增商品</button> </div> <div class="fr"> <form class="layui-form" action=""> <div class="layui-form-item"> <div class="layui-inline"> <label class="layui-form-label">状态:</label> <div class="layui-input-inline"> <select name="city" lay-verify="required" class="select_wd120"> <option value=""></option> <option value="0">启用</option> <option value="1">禁用</option> <option value="2">暂时</option> </select> </div> </div> <div class="layui-inline"> <label class="layui-form-label">创建时间:</label> <div class="layui-input-inline"> <input type="text" class="layui-input dateIcon" id="dateTime" placeholder="请选择时间范围" style="width: 240px;"> </div> </div> <div class="layui-inline"> <div class="layui-input-inline"> <input type="text" placeholder="请输入标题" class="layui-input" style="width: 240px;"> </div> <div class="layui-input-inline"> <button type="button" class="layui-btn layui-btn-blue">搜索</button> </div> </div> </div> </form> </div> </div>
Public css: (including theme color modification)
.fl { float: left; } .fr { float: right; } .mb10{ margin-bottom:10px;} .sideBlock { padding: 24px; } .layui-form-item .layui-input-inline { width: auto; } .layui-input, .layui-select, .layui-textarea{ height:36px;} .layui-form-label { padding: 8px 15px; } .layui-form-switch { height: 34px; line-height: 34px; margin-top: 0; min-width: 54px; } .layui-form-switch i { width: 24px; height: 24px;top: 5px; } .layui-form-onswitch i { margin-left: -28px; top: 5px; } .layui-form-switch em{margin-left: 27px;} .layui-form-onswitch em { margin-left: 5px; } .layui-btn{ height:36px;} /*修改颜色风格-蓝色 */ .layui-form-select dl dd.layui-this { background-color: #02a7f0; } .layui-btn-blue { background-color: #02a7f0; } .layui-form-onswitch { border-color: #02a7f0; background-color: #02a7f0; } .layui-form-radio>i:hover, .layui-form-radioed>i { color: #02a7f0; } .layui-form-checked[lay-skin=primary] i { border-color: #02a7f0; background-color: #02a7f0; } .layui-form-checkbox[lay-skin=primary]:hover i { border-color: #02a7f0; }
Horizontal css:
.mainTop .layui-form-label { width: auto; padding-right: 5px; } .dateIcon { display: inline-block; background: url(images/dateIcon.png) no-repeat 210px center; }
Effect display:
2. Vertical typesetting
html:
<div class="formList"> <form class="layui-form" action=""> <div class="layui-form-item"> <label class="layui-form-label">昵称<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <input type="text" placeholder="请输入昵称" class="layui-input" style="width: 320px;"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">邮箱<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <input type="email" placeholder="请输入邮箱" class="layui-input" style="width: 320px;"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">性别:</label> <div class="layui-input-block"> <input type="radio" name="sex" value="保密" title="保密" checked> <input type="radio" name="sex" value="男" title="男"> <input type="radio" name="sex" value="女" title="女"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">兴趣:</label> <div class="layui-input-block"> <input type="checkbox" name="" title="写作" lay-skin="primary" checked> <input type="checkbox" name="" title="发呆" lay-skin="primary"> <input type="checkbox" name="" title="唱歌" lay-skin="primary"> <input type="checkbox" name="" title="跳舞" lay-skin="primary" checked> <input type="checkbox" name="" title="睡觉" lay-skin="primary"> <input type="checkbox" name="" title="画画" lay-skin="primary"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">城市<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <select name="city" lay-verify="required" class="select_wd320"> <option value=""></option> <option value="0">北京</option> <option value="1">上海</option> <option value="2">广州</option> <option value="3">深圳</option> <option value="4">杭州</option> </select> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">状态:</label> <div class="layui-input-block"> <input type="checkbox" name="yyy" lay-skin="switch" lay-text="ON|OFF" checked> </div> </div> <div class="layui-form-item layui-form-text"> <label class="layui-form-label">个人签名:</label> <div class="layui-input-block"> <textarea name="desc" placeholder="请输入活动备注内容" class="layui-textarea"></textarea> </div> </div> </form> </div>
css:
.dotRed { color: #ff3100; } .mt32{ margin-top:32px;} .formList .layui-form-label { padding-right: 0; } .formList .layui-input-block{ margin-left:100px;}
Effect display:
3. Vertical typesetting---when there is a lot of text
I have encountered when there is a lot of text on the left side when making vertical forms. The line wrapping will appear unsightly, so what should I do? Here is the solution:
html:
<div class="formList"> <form class="layui-form layui-form-wd120" action=""> <div class="layui-form-item"> <label class="layui-form-label">浏览器名称<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <input type="text" placeholder="请输入浏览器名称" class="layui-input" style="width: 480px;"> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">商店详细地址<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <select name="city" lay-verify="required" class="select_wd320"> <option value=""></option> <option value="0">北京</option> <option value="1">上海</option> <option value="2">广州</option> <option value="3">深圳</option> <option value="4">杭州</option> </select> </div> </div> </form> </div>
css:
.layui-form-wd120 .layui-form-label{ width:120px;} .layui-form-wd120 .layui-input-block{ margin-left:140px;}
Effect display:
If you think there are still more words, continue the same method:
html:
<div class="formList"> <form class="layui-form layui-form-wd210" action=""> <div class="layui-form-item"> <label class="layui-form-label">启用上传商品自动生成相册图<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <input type="checkbox" name="yyy" lay-skin="switch" lay-text="ON|OFF" checked> <span class="error-tips">启用后以商品原图无压缩上传,原图文件较大,会影响网页图片打开速度。</span> </div> </div> <div class="layui-form-item"> <label class="layui-form-label">启用上传商品保留原图<em class="dotRed">*</em>:</label> <div class="layui-input-block"> <input type="checkbox" name="yyy" lay-skin="switch" lay-text="ON|OFF" checked> </div> </div> </form> </div>
css:
.layui-form-wd210 .layui-form-label{ width:210px;} .layui-form-wd210 .layui-input-block{ margin-left:230px;} .error-tips{ color: #ff3100; font-size:13px; padding-left:10px;}
Effect display:
Final demonstration effect display: http://www.jianbaizhan.com/upload/file/20181204/5c06280599c0d/form.html
The above is the detailed content of Introduction to common form layout in layui framework. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



layui provides a variety of methods for obtaining form data, including directly obtaining all field data of the form, obtaining the value of a single form element, using the formAPI.getVal() method to obtain the specified field value, serializing the form data and using it as an AJAX request parameter, and listening Form submission event gets data.

Layui login page jump setting steps: Add jump code: Add judgment in the login form submit button click event, and jump to the specified page through window.location.href after successful login. Modify the form configuration: add a hidden input field to the form element of lay-filter="login", with the name "redirect" and the value being the target page address.

Adaptive layout can be achieved by using the responsive layout function of the layui framework. The steps include: referencing the layui framework. Define an adaptive layout container and set the layui-container class. Use responsive breakpoints (xs/sm/md/lg) to hide elements under specific breakpoints. Specify element width using the grid system (layui-col-). Create spacing via offset (layui-offset-). Use responsive utilities (layui-invisible/show/block/inline) to control the visibility of elements and how they appear.

The difference between layui and Vue is mainly reflected in functions and concerns. Layui focuses on rapid development of UI elements and provides prefabricated components to simplify page construction; Vue is a full-stack framework that focuses on data binding, component development and state management, and is more suitable for building complex applications. Layui is easy to learn and suitable for quickly building pages; Vue has a steep learning curve but helps build scalable and easy-to-maintain applications. Depending on the project needs and developer skill level, the appropriate framework can be selected.

To run layui, perform the following steps: 1. Import layui script; 2. Initialize layui; 3. Use layui components; 4. Import layui styles (optional); 5. Ensure script compatibility and pay attention to other considerations. With these steps, you can build web applications using the power of layui.

The layui framework is a JavaScript-based front-end framework that provides a set of easy-to-use UI components and tools to help developers quickly build responsive web applications. Its features include: modular, lightweight, responsive, and has complete documentation and community support. layui is widely used in the development of management backend systems, e-commerce websites, and mobile applications. The advantages are quick start-up, improved efficiency, and easy maintenance. The disadvantages are poor customization and slow technology updates.

The method of using layui to transmit data is as follows: Use Ajax: Create the request object, set the request parameters (URL, method, data), and process the response. Use built-in methods: Simplify data transfer using built-in methods such as $.post, $.get, $.postJSON, or $.getJSON.

layui and vue are front-end frameworks. layui is a lightweight library that provides UI components and tools; vue is a comprehensive framework that provides UI components, state management, data binding, routing and other functions. layui is based on a modular architecture, and vue is based on a componentized architecture. layui has a smaller ecosystem, vue has a large and active ecosystem. The learning curve of layui is low, and the learning curve of vue is steep. Layui is suitable for small projects and rapid development of UI components, while vue is suitable for large projects and scenarios that require rich functions.
