JavaScript
WingBin
这个作者很懒,什么都没留下…
展开
-
JS数组元素去重
//数组去重复 Array.prototype.unique = function () { var tempArr = []; var tempObj = {}; for (var i = 0; i < this.length; i++) { if (!(this[i] in tempObj) || !(this[i] === tempObj[this[原创 2012-11-26 16:00:30 · 542 阅读 · 0 评论 -
JS日期减去8小时(北京时间转UTC)
//日期原型Date.prototype.Format = function(fmt) { //author: meizz var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 "h+"...原创 2019-04-12 08:23:50 · 6284 阅读 · 0 评论 -
JS endWith原型
//判定是否endWithString.prototype.endWith = function(s) { if (s == null || s == "" || this.length == 0 || s.length > this.length) return false; if (this.substring(this.length - s.length) == s) ...原创 2019-04-12 08:21:18 · 459 阅读 · 0 评论 -
JS日期格式化原型
Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : this.getDate(), //日 ...原创 2019-04-12 08:17:36 · 438 阅读 · 1 评论 -
JQuery Ajax 详解
Jquery ajax转载 2016-04-19 22:50:32 · 461 阅读 · 0 评论 -
JS特殊字符判断
//判断是否包含特殊字符function containSpecial( s ) { var containSpecial = RegExp(/[(\*)(\|)(\\)(\:)(\")(\/)(\)(\?)]+/); return ( containSpecial.test(s) ); }原创 2015-08-11 12:05:42 · 733 阅读 · 0 评论 -
javascript中正确显示struts2标签输出的中文
jsp页面中使用struts2标签,页面显示中文正常,但在js中引用struts标签时,引用到的却是编码过的内容,如:js代码:var cityName = “”;显示的却是:杭州这样的编码。查看页面源代码,发现源代码中由struts标签输出的中文都是这种格式,但页面显示都是正常的。网上查找资料后发现,struts默认会对输出进行htmlEncode原创 2013-09-18 15:50:43 · 1634 阅读 · 0 评论 -
Jquery JSON
http://www.cnblogs.com/codeplus/archive/2011/07/18/2109544.html转载 2013-09-06 00:16:25 · 594 阅读 · 0 评论 -
JS-JSON-UI
http://wenku.it168.com/d_705119.shtml原创 2013-08-26 11:23:21 · 1165 阅读 · 0 评论 -
批量处理页面中所有单选、复选(至少选一个)
//trim String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } //数组去重复 Array.prototype.unique = function () { var tempArr = []; v原创 2013-04-23 09:26:07 · 915 阅读 · 0 评论 -
JavaScript判断一组单选或复选按钮至少一个被选中
//判断某个单选或复选按钮是否被选中至少一个 function isChecked(chkName){ var cps = document.getElementsByName(chkName); var chk = false; for(var i=0;i<cps.length;i++){ chk = chk || cps[i].checked;原创 2012-12-14 21:42:53 · 2097 阅读 · 0 评论 -
JS的Trim
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> <!-- String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); } St转载 2012-11-26 16:03:09 · 347 阅读 · 0 评论 -
JS占位符处理
//占位符替换,"{0},{1}".format("pan.decadework.com", "免费外链网盘"); String.prototype.format = function() { if (arguments.length == 0) return this; for ( var s = this, i = 0; i < arguments.length; i++)...转载 2019-04-12 08:24:56 · 2726 阅读 · 0 评论