码迷,mamicode.com
首页 >  
搜索关键字:click    ( 10709个结果
nodejs phantom add click event
page.evaluate( function() { // find element to send click to var element = document.querySelector( 'span.control.critical.closer' ); // creat...
分类:Web程序   时间:2014-07-26 00:11:26    阅读次数:310
[leetcode]Simplify Path
Simplify PathGiven an absolute path for a file (Unix-style), simplify it.For example,path="/home/", =>"/home"path="/a/./b/../../c/", =>"/c"click to sh...
分类:其他好文   时间:2014-07-25 02:25:34    阅读次数:247
jQuery中 trigger() 使用心得
trigger() 触发事件触发事件就是 类似于点击click, mouseover, keydown 等有动作的js事件,简单的说就是一个动作,可能有人会问,那show, hide 是不是? 不是为什么要用 trigger() ?比如:你给一个按钮添加了一个click点击事件,弹出提示框,代码如下...
分类:Web程序   时间:2014-07-24 22:37:53    阅读次数:206
Silverlight visifire Chart图表下载到PPT文件中
一、Silverlight xaml.cs文件1、//下载图表 private void btnDown_Click(object sender, RoutedEventArgs e) {DBServiceClient svc = new DBServiceClient(); svc.ShowPre...
分类:Web程序   时间:2014-07-24 21:32:22    阅读次数:377
子窗体中如何调用父窗体里的方法
有两个窗体,一个子窗体,一个父窗体,当点击父窗体中的按钮,弹出子窗体,在子窗体中添加完数据,单击确定按钮后,数据在父窗体的数据显示控件中立即显示,实现其实很简单,同时方法也很多,我是利用了一种最简单的方法。子窗体SubForm:protectedvoidbtnOk_Click(objectsende...
分类:Windows程序   时间:2014-07-24 17:16:45    阅读次数:264
live,on,delegate,bind使用方法知识点
最近对于事件绑定处理用的比较多,进行总结一下bind单个元素的事件绑定扫描文档找出所有的$(‘a')元素,并把alert函数绑定到每个元素的click事件上。$('a').bind('click',function(){alert('That tickles!');})备注:bind并不能对未来添加...
分类:其他好文   时间:2014-07-24 16:59:05    阅读次数:246
之前项目中用到的简单的自定义弹出提示框的实现,整理整理,当然开源的插件很多,但自己写的可以随意发挥
效果如下:html代码: click on me! CSS代码:#contentPopup { position: absolute; display: none; ...
分类:其他好文   时间:2014-07-24 14:42:15    阅读次数:303
探索Split函数第三位参数的用法
Private Sub Form_Click() Dim c() As String c = Split("A,B,C,D,E", ",") For i = 0 To UBound(c) Print c(i) Next iEnd Sub运行效果:ABCDEPri...
分类:其他好文   时间:2014-07-24 10:07:34    阅读次数:215
[leetcode]Reverse Words in a String
Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click...
分类:其他好文   时间:2014-07-24 09:57:33    阅读次数:179
Virtualbox mouse move in and out and file share with windows
How to use Virstalbox to share files with Linux and Windows, and to move the mouse in and out Virtualbox freely without click Ctrl key, herewith what I have done to achieve both....
分类:Windows程序   时间:2014-07-23 18:10:36    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!