此文用来记录学习笔记;休息了好几天,从今天开始继续保持更新,鞭策自己学习今天我们来说一说什么是事件,对于事件,相信你一定不陌生,基本事件是什么?就类似于click、keypress、focus、mouseover等这些事件都是浏览器定义好的内置事件,我们直接使用即可。对于高级事件,无非就是自己去设计...
分类:
Web程序 时间:
2014-09-02 19:44:45
阅读次数:
180
关于jQuery中的submit()函数(绑定event handler or 触发event?) 今天在敲代码的时候无意间碰到了一个比较绕的问题(一个小师弟问的问题),思前想后都不明白,上午百度、谷歌了半天,再加上读了下英文api才算明白开来。现在记下来,给大家做个提醒。废话不多说,代码如下:1....
分类:
Web程序 时间:
2014-09-02 19:22:15
阅读次数:
206
IssueTopology报错信息:SharePoint Web Services Round Robin Service Load Balancer Event: EndpointFailure。Affected Endpoint 主要是两种类型的"SharePoint Service":Meta...
分类:
其他好文 时间:
2014-09-02 19:21:45
阅读次数:
177
原文: ASP.Net TextBox控件只允许输入数字 1.1、在Asp.Net TextBox 控件的 OnKeyPress 事件中指定输入键盘码必须为数字:
=48)&&(event.keyCode 注意:如果不允许输入小数点去掉“event.keyCode==46”这种情况 或者: 类似方法...
分类:
Web程序 时间:
2014-09-02 17:38:25
阅读次数:
275
原文:Asp.net TextBox只能输入数字
其实服务器控件也能加上onkeydown与up等事件的
这样就行了 只能输入小数与数字 在.net开发中,为了确保数据的正确性,经常要用户输入的内容进行验证,比喻说只能输入数字。
首先在TextBox控件中加一个属性事件:
57) event.ret...
分类:
Web程序 时间:
2014-09-02 17:27:45
阅读次数:
228
目标:屏幕向上滚动、向下滚动后,UI做对应的响应初期实现: 1 var scrollFunc=function(e){ 2 3 var data=0; 4 e = e || window.event; 5 if(e.wheelDelta){/...
分类:
其他好文 时间:
2014-09-02 15:46:44
阅读次数:
208
Alert Description Variables:For event Rules:EventDisplayNumber (Event ID): $Data/EventDisplayNumber$EventDescription (Description): $Data/EventDescrip...
分类:
其他好文 时间:
2014-09-02 15:30:54
阅读次数:
213
url:http://blog.csdn.net/chaobeyond/article/details/1449082事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture();eve...
分类:
编程语言 时间:
2014-09-02 13:58:24
阅读次数:
244
Style Switcher Default Narrow Column Large Print 1、事件目标 $(‘#switcher‘).click(function(event){ if(event.target == this){ $(‘#switcher .button‘).toggleClass(‘hidden‘); } }) 确保被单击的元素是 ,...
分类:
Web程序 时间:
2014-09-02 12:43:24
阅读次数:
182
some people said the change event of checkbox can not trigger in the ie7 or ie8,that's not true.this event can trigger in the ie7 or ie8 ,but you can ...
分类:
其他好文 时间:
2014-09-02 12:09:14
阅读次数:
162