码迷,mamicode.com
首页 >  
搜索关键字:click    ( 10709个结果
Set Matrix Zeroes
Given amxnmatrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.Follow up:Did you use extra space?A s...
分类:其他好文   时间:2014-11-19 20:25:11    阅读次数:248
JQUERY
$(‘.js-checkout‘).on(‘click‘, function() { if($(‘#hasError‘).val()==‘true‘){ return; } // var $this=$(this), // url = ‘/cartridges/main/cart/userPermiss-popupError.jsp‘, url=‘/cartridges/main/cart/...
分类:Web程序   时间:2014-11-19 19:01:26    阅读次数:201
移动端网站开发总结2
这段时间一直在做移动端的网站,顺便写一点总结吧,随便写的,想到什么写什么,所有若有幸被各位所看到,可以无视哈。。。。1.1 $(document).bind("click",function(e){ 2 var target = $(e.target); 3 if(t...
分类:移动开发   时间:2014-11-19 17:44:21    阅读次数:223
返回页面顶部样式
$("#toTop").bind("click",function(){ var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; if(sc...
分类:其他好文   时间:2014-11-19 17:40:56    阅读次数:137
angular学习(三):ng渲染案例用法总结
前两篇把基本的架子都搭好了,在单独的Controller中处理独立的业务,这时候渲染相应的页面就要用到ng提供的相应组件和事件,下面我采用一一列举的方式,将这些知识都总结于此: ng-click:               案例 点击上传               说明               声明了一个btn的click事件,对应的controller中声明function为...
分类:其他好文   时间:2014-11-19 16:02:41    阅读次数:149
移动前端工作的那些事---touch
在互联网中,一般用户都是通过鼠标点击、鼠标悬停、鼠标离开等执行一些前端的事件,但是在移动前端,用户却是通过手指来进行操作。从而衍生出移动前端的手势事件。鼠标中的click事件虽然也可以在移动前端进行触发,但这个事件在移动端会有大约半秒中的延迟。所以一般都不采用。 在移动端的手势事件一般有四种情况.....
分类:移动开发   时间:2014-11-19 15:44:58    阅读次数:190
跟随鼠标单击移动的div
Where Do You Want Me?Click Anywhere On The Page To Direct Me css:代码: html { cursor: pointe...
分类:移动开发   时间:2014-11-19 12:26:08    阅读次数:143
winform中使用dsoframer提示"Unable to display the inactive document.Click here to reacitive the document."
在winform中使用dsoframer 1.3载入word文档,但是在axFramerControl1.Open("NPOI.docx");在axFramerControl1控件中却显示Unable to display the inactive document.Click here to reacitive the document. 遇到这种情况的解决办法有两种方式,一是代码实现设置控件...
分类:Windows程序   时间:2014-11-19 11:16:01    阅读次数:299
.NET事件监听机制的局限与扩展
.NET中把“事件”看作一个基本的编程概念,并提供了非常优美的语法支持,对比如下C#和Java代码可以看出两种语言设计思想之间的差异。// C#someButton.Click += OnSomeButtonClick;复制代码// JavasomeButton.addActionListener(...
分类:Web程序   时间:2014-11-19 10:34:43    阅读次数:190
合并工作表Excel用宏
1 Private Sub CommandButton1_Click() 2 Dim rng As Range, arr As Range 3 4 gjl = Range("b13") 5 gjz = Range("b14:b" & Range("a65536").End(xlUp).Row) .....
分类:其他好文   时间:2014-11-19 10:29:31    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!