true

jquery操作复选框(checkbox)的12个小技巧总结

安稳与你 提交于 2019-12-24 14:16:56
1、获取单个checkbox选中项(三种写法) $("input:checkbox:checked").val() 或者 $("input:[type='checkbox']:checked").val(); 或者 $("input:[name='ck']:checked").val(); 2、 获取多个checkbox选中项 $('input:checkbox').each(function() { if ($(this).attr('checked') ==true) { alert($(this).val()); } }); 3、设置第一个checkbox 为选中值 $('input:checkbox:first').attr("checked",'checked'); 或者 $('input:checkbox').eq(0).attr("checked",'true'); 4、设置最后一个checkbox为选中值 $('input:radio:last').attr('checked', 'checked'); 或者 $('input:radio:last').attr('checked', 'true'); 5、根据索引值设置任意一个checkbox为选中值 $('input:checkbox).eq(索引值).attr('checked', 'true');索引值=0

MyBatis 一级缓存,二级缓存,延迟加载设置

百般思念 提交于 2019-12-24 00:09:07
1 什么是延迟加载 resultMap中的association和collection标签具有延迟加载的功能。 延迟加载的意思是说,在关联查询时,利用延迟加载,先加载主信息。使用关联信息时再去加载关联信息。 设置延迟加载 需要在SqlMapConfig.xml 文件中,在<settings> 标签中设置下延迟加载。 lazyLoadingEnabled、aggressiveLazyLoading 设置项 描述 允许值 默认值 lazyLoadingEnabled 全局性设置懒加载。如果设为‘false’,则所有相关联的都会被初始化加载。 true | false false aggressiveLazyLoading 当设置为‘true’的时候,懒加载的对象可能被任何懒属性全部加载。否则,每个属性都按需加载。 true | false true <!-- 开启延迟加载 --> <settings> <!-- lazyLoadingEnabled:延迟加载启动,默认是false --> <setting name="lazyLoadingEnabled" value="true"/> <!-- aggressiveLazyLoading:积极的懒加载,false的话按需加载,默认是true --> <setting name="aggressiveLazyLoading" value

【转载】网易极客战记官方攻略-地牢-循环又循环

时间秒杀一切 提交于 2019-12-23 18:48:34
关卡连接: https://codecombat.163.com/play/level/loop-da-loop 循环真是救命恩人! 简介: 你只需要 一个 while true循环 加上 4 条语句 就可以通关! 仔细检查你的缩进! 默认代码 # 在 while true 里的代码会永远重复! while True: # 右走 hero.moveRight() # 向上走 # 左走 # 向下走 概览 你可以只用一个 while true 循环 以及 4 行命令 就可以存活下来! 确保你加上的代码放在 while true 循环 的 里面。好好检查一下缩进! 循环又循环 解法 # 在 while true 里的代码会永远重复! while True: # 右走 hero.moveRight() # 向上走 hero.moveUp() # 左走 hero.moveLeft() # 向下走 hero.moveDown() 本攻略发于极客战记官方教学栏目,原文地址为: https://codecombat.163.com/news/jikezhanji-xuhuanyouxuhuan 极客战记——学编程,用玩的! 来源: https://www.cnblogs.com/codecombat/p/12085293.html

Javascript判断多选框checkbox和单选钮是否选中

耗尽温柔 提交于 2019-12-20 23:36:56
// 第几个没有选 < input type = " checkbox " name = " checkbox1 " checked > < input type = " checkbox " name = " checkbox1 " > < input type = " checkbox " name = " checkbox1 " checked > < input type = " checkbox " name = " checkbox1 " > < input type = " checkbox " name = " checkbox1 " > < script language = javascript > function check(obj) { for (i = 0 ;i < document.all(obj).length;i ++ ) { if ( ! document.all(obj)[i].checked)alert( " 第 " + (i + 1 ) + " 个没有选择 " ) } } </ script > < input type = button onclick = " check('checkbox1') " value = " 检测 " > // 一个也没有选 < input type = " checkbox " name = " test

Integer 和 int的种种比较

回眸只為那壹抹淺笑 提交于 2019-12-19 05:35:44
public static void main(String[] args) { int i = 128; Integer i2 = 128; Integer i3 = new Integer(128); //Integer会自动拆箱为int,所以为true System.out.println(i == i2); // 1 System.out.println(i == i3); // 2 System.out.println("**************"); Integer i5 = 127;//java在编译的时候,被翻译成-> Integer i5 = Integer.valueOf(127); Integer i6 = 127; System.out.println(i5 == i6);//true // 3 /*Integer i5 = 128; Integer i6 = 128; System.out.println(i5 == i6);//false // 4 */ Integer ii5 = new Integer(127); System.out.println(i5 == ii5); //false // 5 Integer i7 = new Integer(128); Integer i8 = new Integer(123); System.out

jQuery.validator的非空验证 唯一性验证

倖福魔咒の 提交于 2019-12-19 02:14:04
<!--editpanl start--> <div class="modal fade" id="editpanl" data-backdrop="static"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">xxxxxxxxxx</h4> </div> <form role="form" id="form1" method="post" class="validate formvalidate"> <div class="modal-body"> <div class="form-group" style="margin: 0 auto; background-color: #F2F8FE;border: 1px solid #CCE5FF;padding: 0 10px 10px 10px;"> <h3 style="color: #4BA9E9;font-weight: bold;font-size: 14px;">温馨提示:</h3>

如何在网站中添加音乐

僤鯓⒐⒋嵵緔 提交于 2019-12-17 01:21:27
来源: http://www.ido321.com/1042.html 发现有很多的个人博客中添加了背景音乐,以增强用户体验。LZ搜集到了两种在网站中添加音乐的方式。 一、豆瓣的FM 这个非常简单,一段代码就可以实现。 <p> <iframe name="iframe_canvas" src="http://douban.fm/partner/baidu/doubanradio" height="200" width="500" frameborder="0" scrolling="no"> </iframe> </p> 效果: 简单实用,并且能在本地体验,相当不错。但是外观差了一点,需要额外的css控制。 二、Web版的Javascript插件 有一个ajaxsns的Web API,是一个网页播放器。调用代码: <script type= "text/javascript" src= "http://api.ajaxsns.com/music/tczPlayerApp.js" ></script> <script type= "text/javascript" > tczMusic.skin="red"; tczMusic.post=["left","top"]; tczMusic.posx=120; tczMusic.posy=120; tczMusic.show(); <

js数组遍历some,foreach,map,filter,every对比

99封情书 提交于 2019-12-16 18:01:24
1. [...].some(ck)函数 ---- 某个一个为true,则为true 对数组中每个元素执行一次ck函数,知道某个元素返回true,则直接返回true。如果都返回false,则返回false 检查整个数组中是否有满足ck函数的元素。 var result = [1,5,3,6].some( (v,i) => (v>10) ) //所有元素都不满足,返回result = false var result = [10,5,30,60].some( (v,i) => (v<10) ) //有一个(多个)满足,返回result = true    2.[...].foreach(ck)函数 ---- 循环而已 每个数组元素都执行一次ck函数,foreach函数无法用break跳出 [50, 25, 49].forEach( (v,i) => console.log(v) ); //50 25 49    3.[...].map(ck)函数 ---- 返回每个元素返回值的集合 每个数组元素都执行一次ck函数,最后返回每次元素执行ck函数后返回值的集合(数组) var newArray = [50,30,40].map( (v,i) => v/10 ) //每个元素除以10,最后返回一个新数组 newArray = [5,3,4]    4.[...].filter(ck)函数 -

vue 弹框

我与影子孤独终老i 提交于 2019-12-14 15:56:18
弹框展示: 代码: 1 <template> 2 <div> 3 <el-col :span="9" style="text-align: right;"> 4 <el-button @click="dialogVisible=true" 5 style="text-align: right;font-weight:700;font-size: 17px;padding: 7px 10px;">点我弹框 6 </el-button> 7 </el-col> 8 <!--弹框--> 9 <el-dialog title="弹框" :visible.sync="dialogVisible" :close-on-click-modal="true" :modal="true" :show-close="true" :center="true"> 10 内容展示 11 <span slot="footer" class="dialog-footer"> 12 <el-button @click="dialogVisible = false">取 消</el-button> 13 <el-button type="primary" @click="dialogVisible = false">确 定</el-button> 14 </span> 15 </el-dialog> 16 <

瀑布流 + 下拉加载 + 监听图片

拈花ヽ惹草 提交于 2019-12-14 13:08:37
import React from 'react' import Masonry from 'masonry-layout' import InfiniteScroll from 'react-infinite-scroller' import imagesLoaded from 'imagesloaded' import axios from 'axios' import cs from 'classnames' import './styles.less' const arr = [ // 'https://www.baidu.com/link?url=5v5Usz6yi2Yxtw0s7peMfok3NdV_Ws8dL4J5YFSt6vgWQX6dZ1tnXY2VofcFrLqAc_ePMqmpuQB_GfccVRL0G5fWdQlhU605ObjS2Gup46mfOdQEEXADCxRD-uwVKMbV-5gyDRsWVifAjpS6Rtk-VYmg6ELgsa56i280ibJ6I_LphZf2oO5OWg3FIy5pNik9qhzSAHeVgDcAuiMRzK3S0-2E7yPUfy8RNcTtBmkec7yA7kUBR5AFo9Bqow5MXU3OV5B1ZMHzZoUWW7Gzc9PaAal5nHCXLQcOSfIx0QyBK5B0R_Sq5wTVbsGxBO