码迷,mamicode.com
首页 > 2015年02月11日 > 全部分享
jquery禁用右键、文本选择功能、刷新
//禁用右键、文本选择功能、刷新 $(document).bind(“contextmenu”,function(){return false;}); $(document).bind(“selectstart”,function(){return false;}); $(document).k.....
分类:Web程序   时间:2015-02-11 10:49:03    阅读次数:201
关于SYSLINUX的一些重要描述摘录
以下资源都来自官方文档,原文摘录 The SYSLINUX suite contains the following boot loaders ("derivatives"), for their respective boot media: SYSLINUX - MS-DOS/Windows FA...
分类:系统相关   时间:2015-02-11 10:46:51    阅读次数:351
Delphi 托盘/热键《LceMeaning》
以下代码本人在Delphi XE2下编译通过==================================================================unit Unit1;interfaceuses Winapi.Windows, Winapi.Messages, Sys....
分类:Windows程序   时间:2015-02-11 10:47:41    阅读次数:167
JS画图之七【时钟】
样例:http://www.zhaojz.com.cn/demo/draw12.html依赖:圆一、定义对象:针 //定义钟表指针 //dotClock 原点 //len 指针长度 function ClockHand(dotClo...
分类:Web程序   时间:2015-02-11 10:46:02    阅读次数:167
java项目中eclipse控制台输出log4j的信息
最近做的一个hadoop项目中,用MR实现了一个比较复杂的问题,其中的日志信息都是使用的是log4j来处理的。但不知怎么控制台不输出日志信息,只能输出System.out.println()信息,这个调试带了很多的麻烦再次记录一下,怎么在控制台输出日志信息。在debug模式中,选择Arguments...
分类:编程语言   时间:2015-02-11 10:47:48    阅读次数:219
<转>32位移植到64位 注意事项
32bit-64bit porting work注意事项64位服务器逐步普及,各条产品线对64位升级的需求也不断加大。在本文中,主要讨论向64位平台移植现有32位代码时,应注意的一些细小问题。什么样的程序需要升级到64位?理论上说,64位的操作系统,对32位的程序具有良好的兼容性,即使全部换成64位...
分类:其他好文   时间:2015-02-11 10:47:10    阅读次数:193
SSAS 发布报错处理方法 Login failed for user 'NT Service\MSSQLServerOLAPService' 28000
Create login and grant access:Open up SQL Server Management Studio [login to the database engine]> Security > Login (Right click) > New Login >add use...
分类:数据库   时间:2015-02-11 10:45:53    阅读次数:304
eclipse 调试子进程
under the directory of the project, create file .gdbinitwrite the "set follow-fork-mode child"then you can debug the child process
分类:系统相关   时间:2015-02-11 10:47:42    阅读次数:234
SQL常用命令整理
1.增加字段alter table docdsp add dspcodechar(200)2.删除字段 ALTER TABLE table_NAME DROP COLUMNcolumn_NAME3.修改字段类型 ALTER TABLE table_name ALTER COLUMNcolumn_na...
分类:数据库   时间:2015-02-11 10:47:10    阅读次数:134
JS面向对象
经常碰到页面活动倒计时的效果,于是写了个js倒计时的方法,抽出来,直接引用Common.js文件就可以了。Common.js文件:var CountDown = { "now": new Date(), "LeftTime": function (t) { //t参数格式 : 2015/...
分类:Web程序   时间:2015-02-11 10:46:42    阅读次数:134
4Sum
题目描述:Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the su...
分类:其他好文   时间:2015-02-11 10:44:59    阅读次数:129
SPOJ 3048 - DNA Sequences LCS
给出两个字符串(不长于1000),求最长公共子序列,要求:从每个串中取必须取连续k (1=k【代码链接】#include#include#include#include#include#include#include#include#include#include#include#include#d...
分类:其他好文   时间:2015-02-11 10:45:24    阅读次数:133
About Inside the Azure Storage Outage of November 18th
Channel 9的官方解释http://channel9.msdn.com/posts/Inside-the-Azure-Storage-Outage-of-November-18th曾经在自己的Blog提到过这次事件http://www.cnblogs.com/SignalTips/p/4109...
分类:其他好文   时间:2015-02-11 10:45:07    阅读次数:128
微信小店案例
原文:微信小店案例微信小店是基于微信公众平台打造的原生电商模式,包括添加商品、商品管理、订单管理、货架管理、维权等功能,开发者可使用接口批量添加商品,快速开店。 本文展示方倍工作室的开发的几个微信小店案例。 接口检测通过 支付申请成功 支付测试成功 淘宝天猫店产品列表(可从天猫淘宝店同步导入产品) ...
分类:微信   时间:2015-02-11 10:44:50    阅读次数:887
绅士伦敦(雅托文章)
London Looks Like a GentLeman男人的绅士气质从何而来?Education begins a gentleman, conversation completes him教养始于教育,成于社交A grue gentieman is one who is never unint...
分类:其他好文   时间:2015-02-11 10:46:24    阅读次数:225
白话经典算法系列之中的一个 冒泡排序的三种实现
冒泡排序是很easy理解和实现,,以从小到大排序举例:设数组长度为N。1.比較相邻的前后二个数据,假设前面数据大于后面的数据,就将二个数据交换。2.这样对数组的第0个数据到N-1个数据进行一次遍历后,最大的一个数据就“沉”到数组第N-1个位置。3.N=N-1,假设N不为0就反复前面二步,否则排序完毕...
分类:编程语言   时间:2015-02-11 10:44:52    阅读次数:127
TypeError: document.formname.submit is not a function
.... TypeError: document.echartForm.submit is not a function这里提交的时候,出现了:TypeError: document.formname.submit is not a function解决:Javascript E...
分类:其他好文   时间:2015-02-11 10:44:31    阅读次数:105
1793条   上一页 1 ... 84 85 86 87 88 89 90 ... 106 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!