一$.fn.live 重复绑定解决:使用die()方法,在live()方法绑定前,将此元素上的前面被绑定的事件统统解除,然后再通过live()方法绑定新的事件。//先通过die()方法解除,再通过live()绑定$(“#selectAll”).die().live(“click”,function(...
分类:
Web程序 时间:
2014-07-22 22:55:35
阅读次数:
232
Jzzhu has invented a kind of sequences, they meet the following property:
You are given x and y,
please calculate fn modulo 1000000007 (109?+?7).
Input
The first line contains two int...
分类:
其他好文 时间:
2014-07-22 22:49:33
阅读次数:
296
# -*- coding: utf-8 -*-
#code:myhaspl@myhaspl.com
#邻域平均法滤波,半径为2
import cv2
import numpy as np
fn="test3.jpg"
myimg=cv2.imread(fn)
img=cv2.cvtColor(myimg,cv2.COLOR_BGR2GRAY)
#加上椒盐噪声
param=20
#灰阶范围...
分类:
编程语言 时间:
2014-07-19 23:18:52
阅读次数:
405
function CheckUser(fn) { $.get("/Pages/Handler/CheckExistHander.ashx", { "txt_UserNo": $("#txt_UserNo").val(), "flag": "UserExist" }, function (dat...
分类:
编程语言 时间:
2014-07-19 15:36:37
阅读次数:
206
# -*- coding: utf-8 -*-
#code:myhaspl@myhaspl.com
#归一化块滤波
import cv2
import numpy as np
fn="test3.jpg"
myimg=cv2.imread(fn)
img=cv2.cvtColor(myimg,cv2.COLOR_BGR2GRAY)
#加上高斯噪声,可以参考以前博文中的内容
......
....
分类:
编程语言 时间:
2014-07-19 12:01:38
阅读次数:
362
MacBook常用快捷键Command-Tab:在程序间切换Command-H:隐藏Command-M:最小化Command-N:新建Command-O:打开Command-P:打印Command-Q:退出Command-W:关闭fn+F11:隐藏所有窗口并显示桌面Command-←:移动到行首Co...
分类:
其他好文 时间:
2014-07-19 09:17:16
阅读次数:
212
刚入手了ThinkPad L440,用起来相当不错,嘿嘿! L440系统默认(F1-F12)键盘为系统默认功能键,主要控制音量、亮度、连接投影仪等。 因为编写程序需要调试,经常用到F10,F11等键,但是默认这些键都是系统功能键,要按FN+(F1-F12)键才可以实现(F1-F12)的功能,用起来相...
分类:
其他好文 时间:
2014-07-18 19:28:42
阅读次数:
334
In mathematical terms, the sequenceFnof Fibonacci numbers is defined by the recurrence relationF1?=?1;F2?=?1;Fn?=?Fn?-?1?+?Fn?-?2(n?>?2).DZY loves Fib...
分类:
其他好文 时间:
2014-07-16 16:45:19
阅读次数:
418
//判断文件是否存在
bool FileExistsW(const wstring &fn)
{
WIN32_FIND_DATAW fd;
HANDLE hFile = FindFirstFileW(fn.c_str(),&fd);
if (hFile != INVALID_HANDLE_VALUE)
{
::FindClose(hFile);...
function myAddEvent(obj, sEv, fn) { if (obj.attachEvent) { obj.attachEvent('on' + sEv, fn) } else { obj.addEventListener(sEv, fn, ...
分类:
其他好文 时间:
2014-07-13 21:09:28
阅读次数:
140