码迷,mamicode.com
首页 >  
搜索关键字:javascript 回车键 ie    ( 73514个结果
10 Service02
package com.szy.service;import android.app.IntentService;import android.content.Intent;import android.util.Log;public class ExampleIntentService exten...
分类:其他好文   时间:2014-04-29 18:02:50    阅读次数:432
一次遇到流氓软件的经历
想看一部电影,下载好后,点开然后发现系统被装了一堆流氓软件,于是分析了压缩包的内容,发现些有趣的东西。 首先解压压缩包,进入解压后文件夹,发现都是链接(当时看到文件夹图标就点开了) 看看那个带有文件夹图标的属性 首先这是个快捷方式,然后运行一个命令 %windir%\system32\cmd.exe...
分类:其他好文   时间:2014-04-29 17:59:44    阅读次数:411
Configurate vim tool
vim toolis a commom editor, for the sake of improving effeicient, it is necessary to configurate vim config file. The following comands will help you....
分类:其他好文   时间:2014-04-29 17:58:49    阅读次数:502
Javascript:scrollWidth,clientWidth,offsetWidth的区别(转)
网页可见区域宽:document.body.clientWidth;网页可见区域高:document.body.clientHeight;网页可见区域高:document.body.offsetWeight:网页可见区域高:document.body.offsetHeight;网页正文全文宽:doc...
分类:编程语言   时间:2014-04-29 17:53:42    阅读次数:591
20140428 宏定义 单链表翻转 野指针
1、宏定义swap,加括号有什么意义 #define swap(x,y) x = (x)+(y);y=(x)-(y);x=(x)-(y) 加括号是为了处理表达式参数(即宏的参数可能是个算法表达式)时不出错,因为宏替换就是文本替换,所以如果有以下情况: #define COM(A,B) (A)*(B)...
分类:其他好文   时间:2014-04-29 17:47:29    阅读次数:585
《Cracking the Coding Interview》——第17章:普通题——题目3
2014-04-28 22:18题目:计算N的阶乘尾巴上有多少个零?解法:计算5的个数即可,因为2 * 5 = 10,2的个数肯定比5多。计算5的个数可以在对数时间内搞定。代码: 1 // 17.3 Count how many zeros are there in n!? 2 // Count t...
分类:其他好文   时间:2014-04-29 17:45:30    阅读次数:365
代码打包预处理工具
最近因业务原因,需要将…
分类:其他好文   时间:2014-04-29 17:43:24    阅读次数:392
Codeforces Round #243 (Div. 2) B. Sereja and Mirroring
#include #include #include using namespace std;int main(){ int n,m; cin >> n >> m; vector > a(n,vector(m,0)); for(int i = 0; i > a[i][j]; ...
分类:其他好文   时间:2014-04-29 17:41:18    阅读次数:425
jquery 放大图片
jquery 图片放大镜 图片类似放大镜展示鼠标滑过小图异步加载中图、大图
分类:Web程序   时间:2014-04-29 17:35:09    阅读次数:830
条件注释判断浏览器<!--[if !IE]><!--[if IE]><!--[if lt IE 6]><!--[if gte IE 6]>
除IE外都可识别 所有的IE可识别 仅IE6可识别 IE6以及IE6以下版本可识别 IE6以及IE6以上版本可识别 仅IE7可识别 IE7以及IE7以下版本可识别 IE7以及IE7以上版本可识别 仅IE8可识别 仅IE9可识别 项目范例说明![if !IE]The NOT ope...
分类:其他好文   时间:2014-04-29 17:33:05    阅读次数:428
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!