码迷,mamicode.com
首页 >  
搜索关键字:event    ( 11031个结果
精品JS代码收藏大全
1. oncontextmenu="window.event.returnvalue=false" 将彻底屏蔽鼠标右键    return(false)>no 可用于Table     2. "return false"> 取消选取、防止复制     3. onpaste="return false" 不准粘贴       4. o...
分类:Web程序   时间:2015-03-20 11:01:16    阅读次数:193
C#窗体的Load事件与Shown事件的区别
Load:在第一次显示窗体前发生。 private void Form1_Load(object sender, EventArgs e) { MessageBox.Show("You are in the Form.Shown event.");} Shown:只有在首次显示窗体时才会引发 Shown 事件;随后执行的最小化、最大化、还原、隐藏、显示或无效化和重新绘制操作都...
分类:Windows程序   时间:2015-03-20 01:27:58    阅读次数:524
Workerman2.0 框架增加Redis支持
此文章是针对WM2.1.4版本写的一个Redis的扩展使用!如果对WM框架的基础知识不清楚的coder,请移步官方网站http://www.workerman.net/学习;我们在聊天室的应用上进行修改,我们只关注Event.php这个文件;我们首先要引入我们自己写的redis类,类文件在附件中提供下载.我们在even..
分类:其他好文   时间:2015-03-19 18:43:21    阅读次数:266
理解iOS Event Handling
写在前面最近的一个iOS App项目中遇到了这么问题:通过App访问服务器的大多数资源不需要登录,但是访问某些资源是需要用户提供验证的,一般来说,通常App的做法(譬如美团App)将这些资源放在“我的”模块,在未登录情况下,当点击“我的”某个模块时,以modally给出一个界面用于登录,我不晓得美团...
分类:移动开发   时间:2015-03-19 17:54:58    阅读次数:137
jQuery 文档翻译 .on()
.on( events [, selector ] [, data ], handler )Description:Attach an event handler function for one or more events to the selected elements.绑定一个事件处理函数到...
分类:Web程序   时间:2015-03-19 17:52:47    阅读次数:158
C# - Events Tutorial
This tutorial shows how to declare, invoke, and hook up to events in C#. Tutorial An event in C# is a way for a class to provide notifications to clients of that class when some interesting thing ...
分类:Windows程序   时间:2015-03-19 14:48:24    阅读次数:178
-- Warning: Skipping the data of table mysql.event. Specify the --events option explicitly.
/usr/local/mysql/bin/mysqldump-uroot-pxxxxx--all-databases>all.sqlmysql用mysqldump导出数据库时提示“--Warning:Skippingthedataoftablemysql.event.Specifythe--eventsoptionexplicitly.”这是因为mysqldump默认是不备份事件表的,只有加了--events才会,解决办法:加..
分类:数据库   时间:2015-03-19 11:46:24    阅读次数:191
Linux下使用epoll函数同时处理TCP请求和UDP请求的回射服务器
#include #include #include #include #include #include #include #include #include #include #include #include #include #define MAX_EVENT_NUMBER 1024 #define TCP_BUFFER_SIZE 512 #define UDP...
分类:系统相关   时间:2015-03-18 20:38:00    阅读次数:272
简单的Java Event-事件框架
代码:http://git.oschina.net/jmpp/CommonEvent 自己写的一个简单的Java事件框架。目前具备以下功能: 1.通过继承Event类,用户可自定义事件。 2.通过EventService 的fireEvent(Event e) 发出一个事件。 3.通过实现IEventHandler接口,监听某类事件。EventHandler可以动态注册到EventServ...
分类:编程语言   时间:2015-03-18 20:38:00    阅读次数:559
学习笔记.JavaScript开始(二)
1.<script>标签的属性,方法及事件处理程序;属性:defer(defer):规定是否对脚本执行延迟,直到页面加载为止;src(url):规定外部脚本文件的url;charset(charset):规定外部脚本文件使用的字符编码;async:规定异步执行脚本;event:设定或获取脚本编写用于的事件;ht..
分类:编程语言   时间:2015-03-18 18:31:51    阅读次数:194
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!