游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

2016年11月11日 #

用js来实现银行家算法

摘要: Number.prototype.round = function (len) { var old = this; var a1 = Math.pow(10, len) * old; a1 = Math.round(a1); var oldstr = old.toString() var start 阅读全文

posted @ 2016-11-11 10:48 游子日月长 阅读(634) 评论(0) 推荐(0) 编辑

js 日期证有效性验的通用方法

摘要: 开发的理念是“为复用而开发,为使用而组装”,代码的复用度将是项目和产品的一个重要的技术指标。 var DateTools={ isDate:function(str) { var result = str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/); 阅读全文

posted @ 2016-11-11 10:31 游子日月长 阅读(188) 评论(0) 推荐(0) 编辑

js获取或判断任意数据类类型的通用方法(getDataType)和将NodeList转为数组(NodeListToArray)

摘要: function getDataType(any){ /* (1) Object.prototype.toString.call 方法判断类型: 优点:通用,返回"[object String]" 具体object的类型 缺点:不能返回继承的类型 (2)typeof x 缺点:对object类型不能 阅读全文

posted @ 2016-11-11 09:20 游子日月长 阅读(1926) 评论(0) 推荐(0) 编辑

2016年11月9日 #

js实现jquery函数animate动画效果

摘要: <script> function animate(obj, json, interval, sp, fn) { clearInterval(obj.timer); function getStyle(obj, arr) { if(obj.currentStyle){ return obj.curr 阅读全文

posted @ 2016-11-09 15:58 游子日月长 阅读(1026) 评论(0) 推荐(0) 编辑

js原生实现 无缝滚动图片

摘要: <!-- 无缝滚动图片开始 --> <div id=demopic style="OVERFLOW: hidden; WIDTH: 100%; COLOR: #fff; HEIGHT: 170px"> <table width="100%" border=0 align=center cellpad 阅读全文

posted @ 2016-11-09 11:53 游子日月长 阅读(134) 评论(0) 推荐(0) 编辑

2016年11月7日 #

scrollTop实现图像循环滚动(实例1)

摘要: <html><head><title>scrollTop实现图像循环滚动(实例1)</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style> body{margin:0px 0px 0px 0 阅读全文

posted @ 2016-11-07 15:07 游子日月长 阅读(296) 评论(0) 推荐(0) 编辑

2016年11月4日 #

js版多精度算法BigInt

该文被密码保护。 阅读全文

posted @ 2016-11-04 10:14 游子日月长 阅读(0) 评论(0) 推荐(0) 编辑

commonCookie.js

摘要: /** * Created with JetBrains WebStorm. * NAME: commonCookie.js */(function(window,document){ var commonCookie = {}, singleClear = {}, specialKey = 'co 阅读全文

posted @ 2016-11-04 10:11 游子日月长 阅读(164) 评论(0) 推荐(0) 编辑

2016年11月3日 #

delphi XE3解析JSON数据

摘要: 测试数据如下: Memo1.text中的数据: { "date":"周二(今天, 实时:12℃)", "dayPictureUrl":"http://api.map.baidu.com/images/weather/day/duoyun.png", "nightPictureUrl":"http:/ 阅读全文

posted @ 2016-11-03 14:51 游子日月长 阅读(1178) 评论(0) 推荐(0) 编辑

[转载]百分之百自动登录2345王牌技术员联盟源代码(delphi)

摘要: 资源地址:http://download.csdn.net/detail/softlib/9670613 阅读全文

posted @ 2016-11-03 11:53 游子日月长 阅读(165) 评论(0) 推荐(0) 编辑