码迷,mamicode.com
首页 >  
搜索关键字:events    ( 2213个结果
关于userInteractionEnabled的属性的理解
userInteractionEnabledA Boolean value that determines whether user events are ignored and removed from the event queue.译:一个布尔值,它决定了是否用户触发的事件被该视图对象忽略和把...
分类:其他好文   时间:2014-06-27 17:35:22    阅读次数:184
UIButton
【UIButton】 Button is a simple component designed to receive hover, pressed and click events, and change the color of a remote sprite. You can also op....
分类:其他好文   时间:2014-06-25 13:30:43    阅读次数:276
jquery data方法获取某个元素上事件
获取某个元素上的事件,jquery的给元素绑定的事件可以用data方法取出来.通过$(element).data("events")来获取// 比如给一个button绑定两个click事件$("button").click(function() { alert("1") });$("button")...
分类:Web程序   时间:2014-06-24 11:26:51    阅读次数:276
使用Visual Studio在标准Web Part 部件中创建事件处理器
为Web Part部件创建Events是生成Web Parts部件的核心部分。本文主要讲解如何使用Visual Studio在标准Web Part 部件中创建事件处理器。...
分类:Web程序   时间:2014-06-22 08:20:55    阅读次数:304
jquery之获取某个元素上的事件
jquery的给元素绑定的事件可以用data方法取出来 通过$(element).data("events")来获取 // 比如给一个button绑定两个click事件 $("button").click(function() { alert("1") }); $("button").click(function() { alert("2") }); // 这个时候点...
分类:Web程序   时间:2014-06-22 00:28:22    阅读次数:226
PatentTips - Optimizing power usage by factoring processor architectural events to PMU
BACKGROUNDProcessor power consumption has become a major issue in recent years. The current trend of processor design to multi-core architecture as ea...
分类:其他好文   时间:2014-06-18 22:16:54    阅读次数:435
【Nginx】开发一个简单的HTTP模块
首先来分析一下HTTP模块是如何介入Nginx的。 当master进程fork出若干个workr子进程后,每个worker子进程都会在自己的for死循环中不断调用事件模块: for ( ;; ) { .... ngx_process_events_and_timers(cycle); /* 调用事件模块 */ .... }...
分类:其他好文   时间:2014-06-18 08:03:22    阅读次数:246
使用HighCharts描绘多个Y轴的动态曲线。
调试了一整天,终于显示出来了。详细例子参照官网的demo:http://www.hcharts.cn/demo/index.php在这只贴出关键部分的JS代码1. chart (就是在events的load里写一个实时获取的方法。通过json调用去后台拉新数据加到series里) 1 chart:....
分类:其他好文   时间:2014-06-12 11:17:44    阅读次数:261
smartJS 0.1 API 讲解 - PromiseEvent
PromiseEvent基于事件和promise的回调管理,类似于jquery的callbacks,但具有结果传递,优先级,事件参数,promise控制等功能接口方法var events = st.promiseEvent(mode);events.add(name,function(e,arg,…...
分类:Windows程序   时间:2014-06-09 20:50:46    阅读次数:378
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!