BootStrap的select2既可以查询又可以输入的实现代码

作者:Smy_0114 时间:2024-04-28 10:18:41 

首先关键一句话:


$(".js-example-tags").select2({
    tags: true
   })

别小看此代码功能可谓强大,在需要的地方直接加进去class如下代码所示:


<div class="form-group required">
   <label class="control-label col-sm-4">测试select2: </label>
   <div class="col-sm-8">
   <form:select path="sett"
   id="sett" class="form-control required js-example-tags"
   onchange="onchange('${sett.costAmount}','${sett.id}');">
  <form:option value='' label='请选择' />"
   <form:options items="${fns:findSettList()}"
   itemLabel="label" itemValue="value" htmlEscape="false" />
   </form:select>
   </div>
 </div>

注意上面代码有一个onchange方法需把


$(".js-example-tags").select2({
    tags: true
   })

加到此方法里面。不然无法实现。

以上所述是小编给大家介绍的BootStrap的select2既可以查询又可以输入的实现代码网站的支持!

来源:http://blog.csdn.net/smy_0114/article/details/55271205

标签:bootstrap,select2
0
投稿

猜你喜欢

  • Python之多线程爬虫抓取网页图片的示例代码

    2021-09-01 18:55:03
  • python3中替换python2中cmp函数的实现

    2021-08-15 01:42:41
  • 使用keras实现BiLSTM+CNN+CRF文字标记NER

    2022-05-01 04:46:22
  • 妙用Dreamweaver MX共享WPS Office文件

    2010-09-05 21:18:00
  • Python获取当前时间日期的实现示例

    2021-12-26 04:43:21
  • PHP实现抓取HTTPS内容

    2023-11-14 12:45:14
  • JS的get和set使用示例

    2024-05-13 09:35:45
  • Python私有属性私有方法应用实例解析

    2022-11-08 05:09:03
  • 无闪烁更新网页内容JS实现

    2024-05-09 10:37:18
  • 深入理解Python虚拟机中字节(bytes)的实现原理及源码剖析

    2021-12-20 22:51:28
  • Python3实现将文件树中所有文件和子目录归档到tar压缩文件的方法

    2022-11-29 08:22:38
  • 让你同时上传 1000 个文件 (二)

    2023-11-14 10:22:52
  • 详解Python如何实现Excel数据读取和写入

    2023-10-29 06:46:35
  • Python模拟百度登录实例详解

    2023-07-18 19:06:46
  • 页面链接方式的统一性

    2008-03-24 17:02:00
  • Vue实现未登录跳转到登录页的示例代码

    2023-07-02 17:02:49
  • Go爬虫(http、goquery和colly)详解

    2024-05-08 10:52:43
  • python的列表生成式,生成器和generator对象你了解吗

    2022-05-15 15:10:04
  • SqlServer数据库提示 “tempdb” 的日志已满 问题解决方案

    2024-01-28 10:39:47
  • JavaScript使用focus()设置焦点失败的解决方法

    2024-05-02 16:28:15
  • asp之家 网络编程 m.aspxhome.com