- 浏览: 1098427 次
- 性别:
- 来自: 成都
文章分类
最新评论
-
skyesx:
这是2PC实现,更常用的是一个柔性事务的实现,可以参考http ...
Spring分布式事务实现 -
ddbird:
这第一句就不严谨“分布式事务是指操作多个数据库之间的事务”,显 ...
Spring分布式事务实现 -
呵呵6666:
基于互联网支付系统的微服务架构分布式事务解决方案http:// ...
Spring分布式事务实现 -
小黄牛:
写得不错,交流群:472213887
Spring分布式事务实现 -
jiaoqf321456:
这明明是用的apache的压缩,给ant.jar有半毛钱关系吗 ...
使用ant.jar进行文件zip压缩
1.访问剪贴板
2.调用Windows自带的配色控件
3.document.location对象
4.字典对象Dictionary
5.调用iframe中的js
(1)iframe中,取父窗口中的数据
(2)调用iframe中的方法
6.取字符串的字符长度
7、15位身份证转成18位
8、检验身份证并返回信息
9、日期操作
10、判断img是否加载完成
11、无提示关闭窗口
12、以非Tab方式打开窗口
window.clipboardData.setData("Text",oSource.innerText); window.clipboardData.getData("Text");
2.调用Windows自带的配色控件
<OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0px"></OBJECT> <script> var tempColor = "#0099CC"; function returnColor(){ var selColor, hexColor = dlgHelper.ChooseColorDlg(tempColor).toString(16); selColor = tempColor = ((hexColor.length<6)?"000000".substring(0,6-hexColor.length):"") + hexColor; with(event.srcElement){ value = selColor; style.backgroundColor = selColor; } } </script> <input type="text" value="#0099CC" size="12" onclick="returnColor()" style="background-color: #0099CC">
3.document.location对象
document.location.hash // #号后的部分 document.location.host // 域名+端口号 document.location.hostname // 域名 document.location.href // 完整URL document.location.pathname // 目录部分 document.location.port // 端口号 document.location.protocol // 网络协议(http:) document.location.search // ?号后的部分 documeny.location.reload() //刷新网页 document.location.reload(URL) //打开新的网页 document.location.assign(URL) //打开新的网页 document.location.replace(URL) //打开新的网页
4.字典对象Dictionary
var gDic = new ActiveXObject("Scripting.Dictionary"); //遍历Dictionary function printAll(dic){ var keys=dic.Keys().toArray(); for(var i = 0;i<keys.length;i++){ if(dic.Exists(keys[i])){ alert(dic.item(keys[i]).id); alert(dic(keys[i]).name); } } } function test(){ gDic.add('SN-001', {id:'001', name:'张三'}); gDic.add('SN-002', {id:'002', name:'李四'}); gDic.add('SN-003', {id:'003', name:'王五'}); printAll(gDic); gDic.remove('SN-002'); printAll(gDic); gDic.removeAll(); }
5.调用iframe中的js
(1)iframe中,取父窗口中的数据
var gData = parent.PrtData;
(2)调用iframe中的方法
$('#frm')[0].contentWindow.printView();
6.取字符串的字符长度
function countCharacters(str){ var len=0; for(i=0; i<str.length; i++) { if(!/[u00-uFF]/.test(str.charAt(i))) len = len + 2; else len = len + 1; } return len; }
7、15位身份证转成18位
/** * 将15位身份证转成18位:不做验证 */ function convertID15To18( cardID ){ if(cardID.length != 15) return; var v = new Array(); var vs = "10X98765432"; var newCardID = ""; v.push(2, 4, 8, 5, 10, 9, 7, 3, 6, 1, 2, 4, 8, 5, 10, 9, 7); var cardID17 = cardID.substring(0,6)+"19"+cardID.substring(6); var N = 0; var R = -1; var T = '0';//储存最后一个数字 var j = 0; var cardID18=""; //计数出第18位数字 for (var i = 16; i >= 0; i--){ N += parseInt(cardID17.substring(i, i + 1)) * v[j]; j++; } R = N % 11; T = vs.charAt(R); cardID18 = cardID17 + T; return cardID18; }
8、检验身份证并返回信息
function checkID18Card( sId ){ var result = {flag: true, msg: '验证通过'}; var area={ 11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古", 21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏", 33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东", 41:"河南",42:"湖北",43:"湖南",44:"广东",45:"广西", 46:"海南",50:"重庆",51:"四川",52:"贵州",53:"云南", 54:"西藏",61:"陕西",62:"甘肃",63:"青海",64:"宁夏", 65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外" } var iSum=0; var info=""; if(!/^\d{17}(\d|x)$/i.test(sId)){ result.flag = false; result.msg = "字符长度错误"; return result; } sId=sId.replace(/x$/i,"a"); if(area[parseInt(sId.substr(0,2))]==null){ result.flag = false; result.msg = "非法地区"; return result; } var sBirthday=sId.substr(6,4)+"-"+Number(sId.substr(10,2))+"-"+Number(sId.substr(12,2)); var d=new Date(sBirthday.replace(/-/g,"/")) if(sBirthday!=(d.getFullYear()+"-"+ (d.getMonth()+1) + "-" + d.getDate())){ result.flag = false; result.msg = "非法生日"; return result; } for(var i = 17;i>=0;i --) iSum += (Math.pow(2,i) % 11) * parseInt(sId.charAt(17 - i),11) if(iSum%11!=1){ result.flag = false; result.msg = "非法证号"; return result; } result.area = area[parseInt(sId.substr(0,2))]; result.birthday = sBirthday; result.sex = sId.substr(16,1)%2?"男":"女"; return result; }
9、日期操作
Date.prototype.Format = function(fmt){ var o = { "M+" : this.getMonth() + 1, //月份 "d+" : this.getDate(), //日 "h+" : this.getHours(), //小时 "m+" : this.getMinutes(), //分 "s+" : this.getSeconds(), //秒 "q+" : Math.floor((this.getMonth() + 3) / 3), //季度 "S" : this.getMilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length)); for (var k in o) if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; } Date.prototype.addDays = function(d){ this.setDate(this.getDate() + d); } Date.prototype.addWeeks = function(w){ this.addDays(w * 7); } Date.prototype.addMonths= function(m){ var d = this.getDate(); this.setMonth(this.getMonth() + m); if (this.getDate() < d) this.setDate(0); } Date.prototype.addYears = function(y){ var m = this.getMonth(); this.setFullYear(this.getFullYear() + y); if (m < this.getMonth()) { this.setDate(0); } } Date.prototype.getWeekdayDate = function(weekday){ weekday %= 7; var time = this.getTime(); var diff = weekday - this.getDay(); time += diff*24*3600000; return new Date(time); }
10、判断img是否加载完成
function imgLoad(img,callback){ img.complete || img.readyState == 'loading' || img.readyState == 'complete' ? callback() : img.onload = callback; } /** * 取合适大小的图片 * orgin: 真实的图片大小 * limit: 限定范围大小 */ function getImageFitScale(origin, limit){ var _new = {}; var ratio = Math.min( 1, Math.max( 0, limit.width ) / origin.width || 1, Math.max( 0, limit.height ) / origin.height || 1); _new['margin-top'] = (limit.height - Math.round( origin.height * ratio ))/2; //_new['margin-left'] = (limit.width - Math.round( origin.width * ratio ))/2; _new.width = Math.round( origin.width * ratio ); _new.height = Math.round( origin.height * ratio ); return _new; } $("<img id='previewPic'/>").attr({src: data}).one('load', function(){ var _size = getImageFitScale({width:this.width, height:this.height}, gImageScale); $(this).css(_size); }); function showPic(){ var img = new Image(); img.src = getFtpPath(); $(img).load(function(){ var scale = getImageFitScale({width:this.width, height:this.height},{width:900,height:512}); $("#middle").append($("<img>",{ id: "zjpic", src: img.src, width: scale.width, height: scale.height })); } }
11、无提示关闭窗口
function closeWindowSilently(){ window.opener=null; window.open('','_self',''); window.close(); } function closeTopWinSilently(){ window.opener=null; window.open('','_top',''); window.parent.close(); }
12、以非Tab方式打开窗口
window.open(url, "_blank","scrollbars=yes,resizable=1,modal=false,alwaysRaised=yes");
发表评论
-
CSS实用小技巧
2015-06-30 13:19 10881、字体变形命令 .uppercaseInput{ ... -
用css控制标题字符溢出,用省略号表示
2010-01-14 16:59 0css控制文章列表,让标题溢出的文字以省略号方式表现. ... -
firefox与IE对js和CSS的区别
2009-12-15 10:33 30701. document.formName.item(" ... -
css控制select与img
2009-08-11 12:52 0一、css控制select <html> & ... -
常用JS加密编码算法
2009-06-29 14:44 01.UTF8编码函数 function URLEncode ... -
js中的apply/call/caller/callee/bind
2009-06-15 10:53 4672一、call 方法 调用 ... -
详尽解析window.event对象
2009-06-12 14:49 0描述 event代表事件的状态,例如触发event对象的元素、 ... -
JavaScript实用小技巧
2009-04-02 17:00 29631. oncontextmenu="window.e ... -
javascript keyCode
2009-03-12 11:44 1342keycode 8 = BackSpace BackS ... -
JSVM2使用
2009-03-09 12:49 2264JSVM (JavaScript Virtual Ma ... -
js之正则表达式
2009-01-15 10:38 2325一、RegExp 1.定义 var reCat = ne ... -
js之自定义对象/URI编码
2009-01-11 11:24 2932一、定义对象 1.对象初始化器方式 格式:objectName ... -
js之本地对象(Array/Date)
2009-01-10 16:43 1835一、Array类 1.创建Array对象 (1)aValues ... -
js之类型转换与引用类型(Boolean/Number/String)
2009-01-10 16:18 23882一、类型转换 1.转换成字串 ECMAScript的Boo ... -
js得到窗口/对象尺寸/刷新父页面的多种方法
2008-12-26 15:22 5741网页可见区域宽:document.body.clientWid ... -
js table thead tbody tfoot
2008-12-18 14:03 5360function init(){ theT=cr ... -
js操作table(创建并设置样式)与图片控制
2008-11-14 09:54 15966一、操作table .TableLine{ border- ... -
CSS中expression/pseudo-class
2008-01-30 13:08 1809IE5及其以后版本支持在CSS中使用expressio ... -
js技巧
2008-01-29 17:51 1662事件源对象 event.srcElement.tagName ...
相关推荐
在本篇标题为“Javascript实用小技巧”的文章中,作者分享了一系列实用的JavaScript代码片段,旨在帮助学习JavaScript的人士掌握一些提高编程效率的技巧。文章内容涉及了JavaScript的Function对象的apply和call方法...
在这篇文章中,我们将深入探讨JavaScript中的实用代码小技巧,特别是EcmaScript 5和6(ES5/ES6+)中的一些隐藏特性。这些技巧可以帮助我们更好地进行对象的深拷贝、处理JSON数据、优化数组操作以及利用ES6新增的数据...
这个“JavaScript小技巧全集”提供了丰富的教程和源代码,旨在帮助开发者深入理解和掌握JavaScript的各种实用技巧。 首先,我们来看看JavaScript的基本语法。JavaScript是一种弱类型、解释型的语言,它的变量声明不...
这篇文章主要讨论了使用JavaScript实现窗口小技巧,避免设计出难用的网站。文章中提供了几种技术来善用JavaScript的窗口功能,包括如何创建无边框窗口、画布模式窗口等。 首先,文章提到使用多窗口(Multi-window)...
40种Javascript中常用的使用小技巧
"JavaScript小技巧全集1.doc"和"JavaScript小技巧全集2.doc"可能包含更深入的案例和示例,而"使用须知.txt"可能提供了阅读和使用这些文档的注意事项。通过学习和实践这些技巧,你可以不断提升你的JavaScript技能水平...
2. **javascript同步服务器时间和同步倒计时小技巧**:讲解如何用JavaScript实现与服务器时间同步,以及创建倒计时功能的方法。 3. **javascript应用小技巧方法汇总**:收集了各种JavaScript应用中的小窍门,有助于...
根据提供的文件内容,我们可以总结出以下几个JavaScript小技巧及相关知识点: ### 1. 引入外部JavaScript文件 在HTML文档中,可以通过`<script>`标签引入外部JavaScript文件来执行脚本代码。例如: ```html ...
以下是一些JavaScript的常用小技巧,可以帮助开发者提高效率,优化网页功能。 1. **禁用鼠标右键**:通过`oncontextmenu="window.event.returnValue=false"`可以禁止用户在网页上点击鼠标右键,通常用于防止用户...
### 19 个 JavaScript 编码小技巧 #### 一、三元操作符 三元操作符是一种简洁地表达条件语句的方式。相比于传统的 `if-else` 结构,三元操作符可以让代码更加紧凑。 **Longhand:** ```javascript const x = 20; ...
### 常用JavaScript小技巧详解 在前端开发领域,JavaScript是不可或缺的编程语言,它提供了丰富的功能和灵活的语法,让开发者能够构建交互式的网页应用。以下是对给定文件中提到的一些常用JavaScript小技巧的深入...
这本名为"1000个JavaScript小技巧"的资源集锦涵盖了各种实用的编程技巧,旨在帮助开发者提升效率,解决实际问题。以下是一些关键的知识点,将从这1000个小技巧中提炼出来: 1. **变量声明与作用域**:了解`var`、`...
本文将基于“JavaScript小技巧一箩筐”这一主题,深入探讨一系列实用的JavaScript技巧,涵盖事件处理、DOM操作、表单控制、定时器使用等多个方面,旨在帮助开发者提升代码效率与网站性能。 #### 事件处理与键盘操作...
这个"JavaScript小技巧全集"涵盖了各种实用的编程技巧,旨在帮助开发者提升效率,编写出更优雅、性能更好的代码。无论您是在Windows、MacOS还是Linux等任何操作系统上工作,这些技巧都是通用的。 一、函数与闭包 1....
### JavaScript小技巧整理篇知识点详述 #### 一、引言 本文档旨在总结一系列JavaScript编程中的实用技巧,涵盖从基本操作到高级功能的应用。这些技巧不仅有助于提升开发效率,还能帮助开发者更好地理解和掌握...
### JavaScript中的实用小技巧 JavaScript 是一种广泛使用的脚本语言,尤其在网页开发中不可或缺。以下是一些在日常编码过程中非常实用的小技巧。 #### 1. 使用 `document.write("")` 清空页面内容 `document....