11 2018 档案

摘要:JavaScript indexOf() 方法 定义和用法 indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。 说明 该方法将从头到尾地检索字符串 stringObject,看它是否含有子串 searchvalue。开始检索的位置在字符串的 fromindex 处或字符串的开 阅读全文
posted @ 2018-11-29 14:16 程序员小明1024 阅读(163) 评论(0) 推荐(0) 编辑
摘要:Java POI导入导出Excel 1、异常java.lang.NoClassDefFoundError: org/apache/poi/UnsupportedFileFormatException 解决方法: 使用的poi的相关jar包一定版本一定要相同!!!!! 2、maven所使用jar包,没 阅读全文
posted @ 2018-11-24 14:53 程序员小明1024 阅读(331) 评论(0) 推荐(0) 编辑
摘要:<input type="number" oninput="if(value.length>5)value=value.slice(0,5)" /> 阅读全文
posted @ 2018-11-24 14:51 程序员小明1024 阅读(299) 评论(0) 推荐(0) 编辑
摘要:JS中的反斜杠 (\)是什么意思 在js中我们经常能看到“\”。让人有一种看不懂的错觉。那么,为什么本来正常的代码,要加上反斜杠呢,他的作用是什么呢 我们先来看一段代码 var txt="We are the so-called \"Vikings\" from the north." docume 阅读全文
posted @ 2018-11-24 14:50 程序员小明1024 阅读(3188) 评论(0) 推荐(0) 编辑
摘要:第一种写法(1): 原符号 < <= > >= & ' "替换符号 &lt; &lt;= &gt; &gt;= &amp; &apos; &quot;例如:sql如下:create_date_time &gt;= #{startTime} and create_date_time &lt;= #{e 阅读全文
posted @ 2018-11-24 14:45 程序员小明1024 阅读(605) 评论(0) 推荐(0) 编辑
摘要:<!-- 设置clearfloat样式,让里面的div撑开外面的div,让高度自适应 --> <style type="text/css"> .clearfloat{clear:both;height:0;font-size: 1px;line-height: 0px;} </style> </he 阅读全文
posted @ 2018-11-24 14:43 程序员小明1024 阅读(2037) 评论(0) 推荐(0) 编辑
摘要:// 缓存中数据赋值 if (localStorage.zzkccbtqjwyj != null && localStorage.zzkccbtqjwyj != '') { var str = localStorage.zzkccbtqjwyj.split("&"); $.each(str, fun 阅读全文
posted @ 2018-11-24 14:34 程序员小明1024 阅读(212) 评论(0) 推荐(0) 编辑
摘要:/* description: Pinyin, to get chinese pinyin from chinese. license: MIT-style authors: Bill Lue requires: core/1.2.1: '*' provides: [Pinyin] ... */ / 阅读全文
posted @ 2018-11-24 14:27 程序员小明1024 阅读(1240) 评论(0) 推荐(0) 编辑
摘要:ReadOnly和Disabled的作用是使用户不能够更改表单域中的内容.但是二者还是有着一些区别的: 1、Readonly只针对input(text/password)和textarea有效,而disabled对于所有的表单元素有效,包括select,radio,checkbox,button等。 阅读全文
posted @ 2018-11-24 14:24 程序员小明1024 阅读(547) 评论(0) 推荐(0) 编辑
摘要:.divHXMDNoWrap{ width: 100px; /*必须设置宽度*/ overflow: hidden; /*溢出隐藏*/ text-overflow: ellipsis; /*以省略号...显示*/ white-space: nowrap; /*强制不换行*/ } 阅读全文
posted @ 2018-11-24 14:21 程序员小明1024 阅读(1368) 评论(0) 推荐(0) 编辑
摘要:function iFrameHeight(ifm) { //var ifm = document.getElementById('iframeBox4'); //var subWeb = document.frames ? document.frames["iframeBox4"].documen 阅读全文
posted @ 2018-11-24 14:20 程序员小明1024 阅读(502) 评论(0) 推荐(0) 编辑
摘要://自动定位滚动条的位置 window.onbeforeunload = function () { var scrollPos; if (typeof window.pageYOffset != 'undefined') { scrollPos = window.pageYOffset; } el 阅读全文
posted @ 2018-11-24 14:14 程序员小明1024 阅读(934) 评论(0) 推荐(0) 编辑
摘要:var reg = /\w+[@]{1}\w+[.]\w+/; // 验证中文名称 function isChinaName(name) { var pattern = /^[\u4E00-\u9FA5]{1,6}$/; return pattern.test(name); } // 验证手机号 f 阅读全文
posted @ 2018-11-24 14:13 程序员小明1024 阅读(130) 评论(0) 推荐(0) 编辑
摘要:<select id="findUsersByUserName2" resultType="java.util.Map" parameterType="Params"> 2 SELECT 3 id as uid, 4 username as uname, 5 password as pwd, 6 a 阅读全文
posted @ 2018-11-24 14:11 程序员小明1024 阅读(572) 评论(0) 推荐(0) 编辑
摘要:jsp页面处理方式:encodeURI(encodeURI(HIGHER_AUTHORITY)) java代码处理方式: //防止中文乱码 String HIGHER_AUTHORITY = java.net.URLDecoder.decode(request.getParameter("HIGHE 阅读全文
posted @ 2018-11-24 14:10 程序员小明1024 阅读(829) 评论(0) 推荐(0) 编辑
摘要:CASE WHEN V.GET_NUM /V.EFFECTIVE_NUM is null THEN '' WHEN V.GET_NUM /V.EFFECTIVE_NUM is not null THEN TO_CHAR ( NVL(ROUND (V.GET_NUM /V.EFFECTIVE_NUM, 阅读全文
posted @ 2018-11-24 14:06 程序员小明1024 阅读(4950) 评论(0) 推荐(0) 编辑
摘要:<if test="STATE !=null and STATE !=''"> <if test="STATE == 5 or STATE == '5'"> AND TCRT.STATE = #{STATE} </if> <if test="STATE == 4 or STATE == '4'"> 阅读全文
posted @ 2018-11-24 14:03 程序员小明1024 阅读(216) 评论(0) 推荐(0) 编辑
摘要:Invalid use of group function即“集函数的无效用法” 错句示例:SELECT sname AS '优秀学生姓名',AVG(score) as '平均成绩' FROM `grade_info` WHERE AVG(score)>90 GROUP BY sno; 正确写法:S 阅读全文
posted @ 2018-11-24 14:00 程序员小明1024 阅读(169) 评论(0) 推荐(0) 编辑
摘要:$(obj).index(this) 与 $(this).index()的区别 <div id="nav"> <p>111111</p> <p>222222</p> <b>333333</b> <b>444444</b> </div> javascript部分 先引入javascript <scri 阅读全文
posted @ 2018-11-24 13:58 程序员小明1024 阅读(586) 评论(0) 推荐(0) 编辑
摘要:// 创建一个数值格式化对象 NumberFormat numberFormat = NumberFormat.getInstance(); // 设置精确到整数位 numberFormat.setMaximumFractionDigits(-1); result = numberFormat.fo 阅读全文
posted @ 2018-11-24 13:56 程序员小明1024 阅读(3932) 评论(0) 推荐(0) 编辑
摘要:if ($("input[name=\"" + str1[0] + "\"]")[0]) { if (str1[0].startsWith("RESULT")) { var val = str1[1]; if (val == 1) { // 不同意 $($("input[name=\"" + str 阅读全文
posted @ 2018-11-24 13:55 程序员小明1024 阅读(220) 评论(0) 推荐(0) 编辑
摘要:select { border: 0; display: block; position: relative; min-height: 1.146667rem; line-height: 1.146667rem; white-space: nowrap; width: 100%; overflow: 阅读全文
posted @ 2018-11-24 13:49 程序员小明1024 阅读(1080) 评论(0) 推荐(0) 编辑
摘要:在jsp页面中不能通过${list.size}取列表长度,而是 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/js 阅读全文
posted @ 2018-11-24 13:48 程序员小明1024 阅读(960) 评论(0) 推荐(0) 编辑
摘要:一、mybatis执行批量更新batch update 的方法(mysql数据库) 1、数据库连接必须配置:&allowMultiQueries=true(切记一定要加上这个属性,否则会有问题,切记!切记!切记!) 我的配置如下:jdbc:mysql://127.0.0.1:3306/test?us 阅读全文
posted @ 2018-11-24 13:40 程序员小明1024 阅读(3817) 评论(0) 推荐(0) 编辑
摘要:<!-- 批量插入生成的兑换码 --> <insert id ="insertQuasiPersonList" parameterType="map" > <foreach collection="list" item="item" index="index" open="begin" close= 阅读全文
posted @ 2018-11-24 13:38 程序员小明1024 阅读(830) 评论(0) 推荐(0) 编辑
摘要:jstl的if else条件判断用法 一、例子 <c:choose> <c:when test="${userInfo.cardPhoto1 != null && userInfo.cardPhoto1 != '' }"> <img src="<%=ProjectConfig.getFileServ 阅读全文
posted @ 2018-11-24 13:28 程序员小明1024 阅读(8121) 评论(0) 推荐(0) 编辑
摘要:js jquery中判断checkbox是否被选中的方法在js中: document.getElementById("checkboxID").checked 返回true或者false jQuery中: $("input[type='checkbox']").is(':checked') 返回tr 阅读全文
posted @ 2018-11-24 13:23 程序员小明1024 阅读(1296) 评论(0) 推荐(0) 编辑
摘要:{ "orderId":"1", "sellerCommentList":[ { "sellerId":"222", "randId":"5", "goodCommentList":[ { "goodId":"222", "starEvaluation":"4" } ] } ] } 阅读全文
posted @ 2018-11-24 13:16 程序员小明1024 阅读(492) 评论(0) 推荐(0) 编辑
摘要:/** * There are <a href="https://github.com/thinkgem/jeesite">JeeSite</a> code generation */ package com.bns.modules.cadre.selection.web; import java. 阅读全文
posted @ 2018-11-24 13:13 程序员小明1024 阅读(623) 评论(0) 推荐(0) 编辑
摘要:js对象和数组的定义 阅读全文
posted @ 2018-11-24 12:55 程序员小明1024 阅读(5063) 评论(0) 推荐(0) 编辑
摘要:json和js的区别 阅读全文
posted @ 2018-11-24 12:35 程序员小明1024 阅读(4676) 评论(0) 推荐(1) 编辑