function clickOrDblClick(obj) { count++; if (obj != undefined) { var rowStr = $.trim($(obj).find("td:eq(1)").text().replace(/※/g, '')); ...
分类:
Web程序 时间:
2015-12-03 09:53:20
阅读次数:
543
菜单 网站首页 整形中心 皮肤中心 网站首页 整形中心 皮肤中心 网站首页
分类:
Web程序 时间:
2015-11-03 19:36:17
阅读次数:
171
在jquery里边: $().bind(‘click’,function(evt){ evt.preventDefault(); evt.stopPropagation(); }); preventDefault()方法是jquery的方法,名字与js底层代码的名字一致而已。 并且其有做浏览器...
分类:
其他好文 时间:
2015-10-27 00:20:30
阅读次数:
199
一、DOM中的事件对象1.获取var event = event2.事件目标event.target3.阻止事件冒泡event.stopPropagation();4.阻止默认行为event.preventDefault() 二、IE中的事件对象1.获取window.event;2.事件目标eve....
分类:
其他好文 时间:
2015-10-19 20:53:46
阅读次数:
189
//用firefox变量表示火狐代理var firefox = navigator.userAgent.indexOf('Firefox') != -1;function MouseWheel(e){//阻止事件冒泡和默认行为的完整兼容性代码 e = e||window.event; if (e.s...
分类:
其他好文 时间:
2015-10-19 17:13:05
阅读次数:
145
JQuery 提供了两种方式来阻止事件冒泡。方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); });方式二:return false; $("#div1")...
分类:
Web程序 时间:
2015-09-22 14:13:58
阅读次数:
110
JQuery 提供了两种方式来阻止事件冒泡。 方式一:event.stopPropagation(); ??? ??? $("#div1").mousedown(function(event){ ??? ??? ??? event.stopPropagation(); ??? ??? }); 方式二:r...
分类:
其他好文 时间:
2015-09-07 15:43:36
阅读次数:
162
阻止事件冒泡html代码: 冒泡事件测试 js代码:$('table').click(function(){alert('table');});$('td').click(function(){alert('td');});$('span').click(function(e){ alert('s....
分类:
其他好文 时间:
2015-09-02 17:10:51
阅读次数:
203
做一个下拉菜单,当点击表单元素时显示下拉菜单,鼠标放到菜单元素上时改变元素背景色,将菜单中选中的值传到表单中,当点击表单及下拉菜单时外的其他地方时,下拉菜单消失。下拉菜单 汉族 回族 满族 朝鲜族 苗族 藏族function caidan(a){ a.sty...
分类:
其他好文 时间:
2015-08-26 15:23:24
阅读次数:
130
1. event.preventDefault(); -- 阻止元素的默认事件。注:a元素的点击跳转的默认事件 ,button,radio等表单元素的默认事件 ,div 元素没有默认事件例:百度var samp = document.getElementByTagName("a");samp.add...
分类:
编程语言 时间:
2015-08-19 19:53:13
阅读次数:
184