layui sleect获取value值

Posted chentailin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了layui sleect获取value值相关的知识,希望对你有一定的参考价值。

<div class="layui-form-item">
              <label for="username" class="layui-form-label">
                  <span class="x-red">*</span>父级分类
              </label>
              <div class="layui-input-inline">
                <select name="modules" name="category" lay-filter="parent">
                   {volist name="$class_info" id="vo"}
                      <option value="{$vo.id}">{$vo.class_name}</option>
                    {/volist}
                </select>
            
              </div>
          </div>
layui.use([‘layer‘, ‘form‘], function(){
            var layer = layui.layer,form = layui.form;
             var category = 0;
              var categoryName = ‘‘;
              form.on(‘select(parent)‘, function (data) {
                  category = data.value;
                  categoryName = data.elem[data.elem.selectedIndex].text;
                  form.render(‘select‘); 
                  console.log(category)
              })
      
          }); 

 

以上是关于layui sleect获取value值的主要内容,如果未能解决你的问题,请参考以下文章

layui.js怎么在文本框后面添加必填的*符号

3.springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Im(代码片

3springboot:springboot配置文件(配置文件YAML属性文件值注入<@Value@ConfigurationProperties@PropertySource,@Imp(代码片

JavaScript中获取radio的值

layui.laydate 能动态指定min吗

layui获取表格最后一行数据