var isIE6 = !!window.ActiveXObject&&!window.XMLHttpRequest; //滚动加载 var scrollLoad =function(){ $("#content iframe[_src]").each(functi...
分类:
Web开发 时间:
2015-12-12 23:12:57
收藏:
0 评论:
0 赞:
0 阅读:
252
GTW likes gt Accepts: 54 Submissions: 782 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) 从前,有nnn只萌萌的GT,他们分成了两组在...
分类:
其他 时间:
2015-12-12 23:12:47
收藏:
0 评论:
0 赞:
0 阅读:
253
(1)this和super关键字的用法 this表示调用本类实例方法和成员变量,this引用就是对一个对象的引用,如this.name 表示本类成员变量name,静态方法中不能使用this关键字。 super关键字的用法:调用父类的构造方法,如super([参数列表]);操作被隐藏的成员变量...
分类:
编程语言 时间:
2015-12-12 23:12:37
收藏:
0 评论:
0 赞:
0 阅读:
259
1002:这题拿两个优先队列维护一下就可以了,近期都在做这种题,然而这题居然还是不会,why am i so stupid...#include#define REP(i,a,b) for(int i=a;i>T; while(T--){ scanf("%d%d",&n,&m);...
分类:
其他 时间:
2015-12-12 23:12:27
收藏:
0 评论:
0 赞:
0 阅读:
284
Date.prototype.format = function(format){var o = {"M+" : this.getMonth()+1, //month"d+" : this.getDate(), //day"h+" : this.getHours(), //hour"m+" : th...
分类:
Web开发 时间:
2015-12-12 23:12:17
收藏:
0 评论:
0 赞:
0 阅读:
322
方式1:通过 event.stopPropagation();$("div").click(function (event) { slide.call(this); event.stopPropagation();//仅仅是阻止了事件冒泡,本质来讲这个方法是执行了的。});方式2:通过 ...
分类:
Web开发 时间:
2015-12-12 23:12:07
收藏:
0 评论:
0 赞:
0 阅读:
269
切小标签圆角 UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.markLabel.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCorn...
分类:
其他 时间:
2015-12-12 23:11:37
收藏:
0 评论:
0 赞:
0 阅读:
297
GTW likes mathAccepts: 472Submissions: 2140Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)Problem DescriptionAfter a...
分类:
其他 时间:
2015-12-12 23:11:27
收藏:
0 评论:
0 赞:
0 阅读:
388
文章来源 http://www.cnphp6.com/archives/580201. 单像素边框CSS表格这是一个非经常常使用的表格样式。源码:2. 带背景图的CSS样式表格和上面差点儿相同,只是每一个格子里多了背景图。cell-blue.jpgcell-grey.jpg1.下载上面两张图,命名为...
分类:
Web开发 时间:
2015-12-12 23:11:18
收藏:
0 评论:
0 赞:
0 阅读:
776
1.下载最新composer1 wget -c https://getcomposer.org/composer.phar2.可执行权限1 chmod u+x composer.phar3.放置到安装文件夹mv composer.phar /usr/local/bin/composer4.执行命令,...
分类:
系统服务 时间:
2015-12-12 23:10:57
收藏:
0 评论:
0 赞:
0 阅读:
354
在输入框中输入试一下:
分类:
Web开发 时间:
2015-12-12 23:10:47
收藏:
0 评论:
0 赞:
0 阅读:
277
(一)IIS Noinput file specified方法一:改PHP.ini中的doc_root行,打开ini文件注释掉此行,然后重启IIS方法二:请修改php.ini找到; cgi.force_redirect = 1去掉前面分号,把后面的1改为0即cgi.force_redirect = ...
分类:
其他 时间:
2015-12-12 23:10:37
收藏:
0 评论:
0 赞:
0 阅读:
281
分类:
其他 时间:
2015-12-12 23:10:17
收藏:
0 评论:
0 赞:
0 阅读:
1167
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;namespace FileOperate{ class Program { ...
分类:
Windows开发 时间:
2015-12-12 23:09:57
收藏:
0 评论:
0 赞:
0 阅读:
384
一. 题意描述Givennpoints on a 2D plane, find the maximum number of points that lie on the same straight line.二. 题目分析看到这道题想到的第一种方法是暴力枚举法,时间复杂度为O(n3),显然是不够好的...
分类:
其他 时间:
2015-12-12 23:09:47
收藏:
0 评论:
0 赞:
0 阅读:
387
nopcommerce是国外用.net开发的电商b2c开源项目,主要涉及技术包括了ef+mvc。 今天主要分析nop的插件机制。 什么是插件?插件是预先开发好的可以独立运行的功能模块,把单独的功能模块动态嵌入主项目这种模式我自称它为插件模式。 这种插件模式作用在于利于模块化编码,降低功...
分类:
其他 时间:
2015-12-12 23:09:37
收藏:
0 评论:
0 赞:
0 阅读:
345
jQuery知识点梳理一、 jquery选择器基本选择器ID选择器类选择器标记选择器分组选择器通配符选择器层次选择器$(“ancestor descendent”):祖先后代选择器 空格$(“parent > child”):父子选择器 大于$(“prev + next”):相邻后兄弟元素选择器 加...
分类:
Web开发 时间:
2015-12-12 23:09:27
收藏:
0 评论:
0 赞:
0 阅读:
264
Total Accepted:53879Total Submissions:190701Difficulty:MediumGiven a linked list and a valuex, partition it such that all nodes less thanxcome before ...
分类:
其他 时间:
2015-12-12 23:09:08
收藏:
0 评论:
0 赞:
0 阅读:
300
一、事件1、什么是事件 事件是可以被JavaScript侦测到的行为。2、常用事件 onClick 单击事件 onMouseOver 鼠标经过事件 onMouseOut 鼠标移出事件 onChange 文本内容改变事件 onSe...
分类:
Web开发 时间:
2015-12-12 23:08:17
收藏:
0 评论:
0 赞:
0 阅读:
243
GTW likes math Accepts: 472 Submissions: 2140 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) 问题描述某一天,GTW听了数学特级教...
分类:
其他 时间:
2015-12-12 23:08:07
收藏:
0 评论:
0 赞:
0 阅读:
331