随笔分类 - jsp
摘要:<input type="number" oninput="if(value.length>5)value=value.slice(0,5)" />
阅读全文
摘要:JS中的反斜杠 (\)是什么意思 在js中我们经常能看到“\”。让人有一种看不懂的错觉。那么,为什么本来正常的代码,要加上反斜杠呢,他的作用是什么呢 我们先来看一段代码 var txt="We are the so-called \"Vikings\" from the north." docume
阅读全文
摘要:<!-- 设置clearfloat样式,让里面的div撑开外面的div,让高度自适应 --> <style type="text/css"> .clearfloat{clear:both;height:0;font-size: 1px;line-height: 0px;} </style> </he
阅读全文
摘要:// 缓存中数据赋值 if (localStorage.zzkccbtqjwyj != null && localStorage.zzkccbtqjwyj != '') { var str = localStorage.zzkccbtqjwyj.split("&"); $.each(str, fun
阅读全文
摘要:ReadOnly和Disabled的作用是使用户不能够更改表单域中的内容.但是二者还是有着一些区别的: 1、Readonly只针对input(text/password)和textarea有效,而disabled对于所有的表单元素有效,包括select,radio,checkbox,button等。
阅读全文
摘要:.divHXMDNoWrap{ width: 100px; /*必须设置宽度*/ overflow: hidden; /*溢出隐藏*/ text-overflow: ellipsis; /*以省略号...显示*/ white-space: nowrap; /*强制不换行*/ }
阅读全文
摘要:function iFrameHeight(ifm) { //var ifm = document.getElementById('iframeBox4'); //var subWeb = document.frames ? document.frames["iframeBox4"].documen
阅读全文
摘要://自动定位滚动条的位置 window.onbeforeunload = function () { var scrollPos; if (typeof window.pageYOffset != 'undefined') { scrollPos = window.pageYOffset; } el
阅读全文
摘要:if ($("input[name=\"" + str1[0] + "\"]")[0]) { if (str1[0].startsWith("RESULT")) { var val = str1[1]; if (val == 1) { // 不同意 $($("input[name=\"" + str
阅读全文
摘要:select { border: 0; display: block; position: relative; min-height: 1.146667rem; line-height: 1.146667rem; white-space: nowrap; width: 100%; overflow:
阅读全文
摘要:在jsp页面中不能通过${list.size}取列表长度,而是 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/js
阅读全文
摘要:$("#registerInLogin").live('click', function() { Header.register(); }); var Header = { register: function() { // $.post(path + '/web/headerregister.js
阅读全文
摘要:js创建对象并赋值其属性原创2013年09月22日13 : 45 : 40 7383今天在开发中遇到js对象操作问题,做了以下总结: 对象定义var obj = new Object();或var obj = {}; 添加属性obj.name = 'tom';obj.ses = 'man'; 添加方
阅读全文