Blogger Information
Blog 250
fans 3
comment 0
visits 322853
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
layui:如何让select中的option属性默认并保留在第一位
梁凯达的博客
Original
3442 people have browsed it
  1. 做项目中遇到的问题
  2. select标签中,option设置了val值,但是点击的时候,选中了,但是无法让该option排序在第一位的位置。
  3. 查阅了很多的资料,处理如下:

HTML代码部分:

<form class="layui-form layui-from-pane" action="" style="margin-top:10px">

<div class="layui-form-item">

<label class="layui-form-label">会员类型</label>

<div class="layui-input-block">

<select name="eqptType" lay-filter="eqptType" id="select">

<option value="普通会员">普通会员</option>

<option value="超级会员">超级会员</option>

<option value="核心代理">核心代理</option>
</select>
</div>
</div>

注意:layui-form 一定要用
所以没有办法实现option默认值排序在第一位
主要是因为layui中的表单没有再渲染一遍
此处只需要将表单渲染多一次即可
具体用法:
form.render(‘select’);
渲染多一次表单即可

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post