游子日月长

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

导航

2017年1月4日 #

JavaScript如何检查网站是可以访问

摘要: JavaScript如何检查网站是可以访问 阅读全文

posted @ 2017-01-04 16:56 游子日月长 阅读(831) 评论(0) 推荐(0) 编辑

jquery实现章节目录效果

摘要: jquery实现章节目录效果 anchor1 anchor2 anchor3 anchor4anchor1anchor2anchor3anchor4 阅读全文

posted @ 2017-01-04 16:53 游子日月长 阅读(292) 评论(0) 推荐(0) 编辑

2017年1月3日 #

Delphi里如何让程序锁定在桌面上,win+d都无法最小化

摘要: procedure TForm29.FormCreate(Sender: TObject); begin Windows.SetParent(Self.Handle, FindWindowEx(FindWindow('Progman', nil), 0, 'shelldll_defview', nil)); end; 阅读全文

posted @ 2017-01-03 10:10 游子日月长 阅读(321) 评论(0) 推荐(0) 编辑

2016年12月28日 #

php 之跨域上传图片

摘要: 因为要将所有上传的图片上传到一台独立的图片服务器上面,js上传时存在跨域问题,网上找到这种,通过php curl方式,将图片重新发送到另外一台服务器上保存,并返回图片路径!这种方式存在一定问题:1,上传大图片时,比如2M,需要将图片首先传到服务器,然后再传到图片服务器,中间需要4M的传输,加大了上传 阅读全文

posted @ 2016-12-28 15:14 游子日月长 阅读(184) 评论(0) 推荐(0) 编辑

2016年12月9日 #

delphi判断文件类型

摘要: function getFileType(inputFile:string):string;const JPEG_FLAG_BEGIN = $D8FF; JPEG_FLAG_END = $D9FF; JPEG_FRAME = $C0FF; GIF_FLAG_BEGIN=$4947; GIF_FLAG 阅读全文

posted @ 2016-12-09 16:22 游子日月长 阅读(287) 评论(0) 推荐(0) 编辑

2016年12月7日 #

EmptyRecycle() 清空回收站

摘要: //在uses下面引用 function SHEmptyRecycleBinA(Wnd:HWND;str:PChar;WRD:DWORD):Integer;stdcall; external 'SHell32.dll'; {清空回收站} //调用 EmptyRecycle(); //调用 Empty 阅读全文

posted @ 2016-12-07 17:40 游子日月长 阅读(216) 评论(0) 推荐(0) 编辑

delphi检查url是否有效的方法

摘要: function CheckUrl(url: string; TimeOut: integer = 5000): boolean;var hSession, hfile, hRequest: hInternet; dwindex, dwcodelen: dword; dwcode: array[1. 阅读全文

posted @ 2016-12-07 14:31 游子日月长 阅读(261) 评论(0) 推荐(0) 编辑

2016年11月28日 #

Explode TArray

摘要: function Explode(const Separator, S: string; Limit: Integer = 0): TArray;var SepLen : Integer; F, P : PChar; ALen, Index : Integer;begin SetLength(Res 阅读全文

posted @ 2016-11-28 16:13 游子日月长 阅读(176) 评论(0) 推荐(0) 编辑

2016年11月25日 #

css设置中文字体(font-family:"黑体")后样式失效问题

摘要: 做项目时偶遇的一诡异问题,同样的代码,在ff和IE7以上页面显示正常,但IE6无论怎么改都不起作用,本来以为是IE6的某些浮动bug所致,结果弄了很长时间也不行,后来不经意间把原来设定的font-family: "黑体"属性去掉了,一切恢复正常。。。到网上搜了下,还真有不少人遇到同样的问题,下面摘录 阅读全文

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

javascript-lessons

摘要: https://github.com/stone0090/javascript-lessons 阅读全文

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