码迷,mamicode.com
首页 > 其他好文
event.preventDefault() --- event.stopPropagation()
1、event.preventDefault() 阻止默认行为链接// 阻止默认行为 e.preventDefault(); $("a").click(function(){ event.preventDefault(); ...
分类:其他好文   时间:2015-05-05 16:10:17    阅读次数:124
56-Merge Intervals
【题目】Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18].【analyze】1...
分类:其他好文   时间:2015-05-05 16:08:51    阅读次数:121
Linked List Cycle II
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?/**...
分类:其他好文   时间:2015-05-05 16:08:30    阅读次数:103
获取当前系统时间并格式化成年月日(例如:2015-05-05)
var day = new Date();var Year = 0;var Month = 0;var Day = 0;var CurrentDate = "";Year = day.getFullYear();//ie火狐下都可以Month = day.getMonth()+1;Day ...
分类:其他好文   时间:2015-05-05 16:07:01    阅读次数:124
div出现滚动条的样式设置
1.overFlow: visible却省值,没有DIV滚动条,根据内容自动扩撑区域的大小,即定义的区域无效 scroll总是显示滚动条 hidden没有滚动条,超出区域的内容不可见 auto根据内容自动判断是否添加滚动条 2.DIV滚动条颜色属性: face-color:滑块颜色 hightlig...
分类:其他好文   时间:2015-05-05 16:07:00    阅读次数:121
忽略git中不需要进行版本管理的文件
在git中我们提交项目的时候有很多东西是不需要进行版本管理的,因此我们需要忽略掉。虽然在github2.0的windows客户端提供了工具,但是这个工具并不是想象中的那么好用。在上面点右键出现的Discard changes只能忽略掉一个文件,如果想忽略掉一个文件夹里的所有文件,这样点下去还不累死?...
分类:其他好文   时间:2015-05-05 16:07:41    阅读次数:157
Reverse Linked List
Reverse Linked List问题:Reverse a singly linked list.思路: 插入排序的应用我的代码:public class Solution { public ListNode reverseList(ListNode head) { if(...
分类:其他好文   时间:2015-05-05 16:06:41    阅读次数:118
LoadRunner 录制 mobile
方法一:本地安装安卓模拟器,用LR选择模拟器录制方式录制方法二:手机真机需要root,可以在电脑上下载一键root工具(如卓大师),然后手机和电脑用数据线连接,然后root。在手机上运行 Mobile Recorder按 “Start Recording”开始录制切换到你们的手机客户端,完成正常的操...
分类:其他好文   时间:2015-05-05 16:06:31    阅读次数:346
before和after伪元素
http://www.w3cplus.com/css3/learning-to-use-the-before-and-after-pseudo-elements-in-css.html来自为知笔记(Wiz)
分类:其他好文   时间:2015-05-05 16:06:59    阅读次数:98
34-Search for a Range
【题目】 Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in t....
分类:其他好文   时间:2015-05-05 16:06:06    阅读次数:109
异步编程设计模式Demo - AsyncComponentSample
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.ComponentModel;using System.Threading;namespace AsyncPr...
分类:其他好文   时间:2015-05-05 16:05:06    阅读次数:123
【传道】中国首部淘宝卖家演讲公开课:农业本该如此
【传道】中国首部淘宝卖家演讲公开课:农业本该如此http://bbs.taobao.com/catalog/thread/154503-316584984.htm?spm=1.7274553.1997558081.2.ITHjYL
分类:其他好文   时间:2015-05-05 16:03:42    阅读次数:106
即时编译和打包您的 Groovy 脚本(转)
在本文中将会涉及到:使用 CliBuilder 来实现对命令行选项的支持,脚本执行时所需要的参数将通过命令行选项的方式传递。使用 GroovyClassLoader 加载 Groovy class。使用 AntBuilder 来构建 Jar 包。开始之前关于本文也许您写了一些有趣或实用的 Groov...
分类:其他好文   时间:2015-05-05 16:04:59    阅读次数:160
HDU 4027 Can you answer these queries? 线段树,区间修改
Can you answer these queries?Problem DescriptionA lot of battleships of evil are arranged in a line before the battle. Our commander decid...
分类:其他好文   时间:2015-05-05 16:05:10    阅读次数:100
YII2 日志
YII 提供的日志写入方法: 1、Yii::getLogger()->log($message, $level, $category = 'application') 2、Yii::trace($message, $category = 'application');3、Yii::error($me...
分类:其他好文   时间:2015-05-05 16:04:55    阅读次数:2706
【leetcode】Reverse Linked List
Reverse a singly linked list.click to show more hints.Hint:A linked list can be reversed either iteratively or recursively. Could you implement both? ...
分类:其他好文   时间:2015-05-05 16:04:23    阅读次数:118
能在CAD2004以下版本里面打开2007以上版本文件的外挂
下载地址:http://yunpan.cn/cjrxMKNubXQ5E 访问密码 1974老何CAD工具安装办法:【推荐】先安装老何工具箱,然后用【扩展添加老何cad下拉菜单.bat】就完成老何下拉菜单的安装。把laohecadtool.mns拷贝到"C:\Program Files\AutoCAD...
分类:其他好文   时间:2015-05-05 16:02:27    阅读次数:1421
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!