h5自带的select标签可以实现按住ctrl键多选的功能,但是样式及其难看。
bootstrap select是很好用的前端插件
首先引入bootstrap和bootstrap-select的css和js
-
<link rel="stylesheet" href="css/bootstrap.css">
-
<link rel="stylesheet" href="css/bootstrap-select.min.css">
-
<script src="js/bootstrap.js" type="text/javascript" charset="utf-8"></script>
-
<script src="js/bootstrap-select.min.js" type="text/javascript" charset="utf-8"></script>
html
:主要是增加class selectpicker 并添加multiple属性
-
<select id ="weatherType" name="weatherType" class="form-control selectpicker" multiple="multiple" title="请选择">
-
</select>
option一般为ajax添加
js
:初始化是为
$("#weatherType").selectpicker('refresh');
这样默认选中第一个
如果想默认什么也不选,则:
$("#weatherType").selectpicker('deselectAll');
注意,默认不选显示的字样需要在select中设置title属性,不然会显示默认的 英文 nothing selected;
多选框的取值
:
直接取值就行,多选的值会自动用逗号分隔开
但如果你提交数据时将表单序列化
var formData = $("#createUserForm").serialize();
则val()只能取到一个选中的值,无法传入多选的值
解决办法:
-
$("#weatherType").change(function(){
-
$("input[name=weatherType1]").val($("#weatherType").val())
-
})
在change事件时将值赋给另一个隐藏的input即可
多选框的赋值:
$("#weatherType").selectpicker ("val",weatherType).trigger("change");
其中weatherType为逗号隔开的值得字符串,赋值后展开后自动打勾
梅花香自古寒来
javascript 循环变量 js for循环变量提升
一、变量提升顺序变量提升:变量提升即是将变量声明提升到它所在作用域最开始的部分。举个例子:$(function() {
console.log(num); // 值:undefined 执行顺序1
var num = 0;
function set(num1) {
num++;
console.log(num); // 值:1 执行顺序3
Python画光滑球面 python绘制球体
matplotlib画球1. 效果2. 代码3.参考链接 1. 效果2. 代码import matplotlib.pyplot as plt
import numpy as np
def hua_qiu(x, y, z, r, dense):
圆心坐标 半径 稠密程度
t = np.linspace(0, np.pi * 2, dens