当我们点击一个a标签时,如果这个标签的href指向了另一个地址,那么浏览器会默认跳转到此地址。在页面中,有时我们需要触发点击事件,但是又不想触发默认行为,就需要阻止event的默认行为了。 常规做法 众所周知,IE早期版本的event对象与DOM标准中的event对象并不相同,所以一般的兼容性写法是 ...
分类:
其他好文 时间:
2016-10-24 13:59:12
阅读次数:
262
最近静下心来看书才深刻的体会到:看书真的很重要,只有看书才能让你有心思静下心来思考。 重温《jquery基础教程》 一、事件 主要掌握常见的事件以及理解jquery的事件处理机制。 需要注意的有: 1、事件传播,包括了事件捕获和事件冒泡,以及怎么消除事件传播的影响,以及应用事件传播。 主要的方法有: ...
分类:
Web程序 时间:
2016-10-23 14:21:27
阅读次数:
250
Last Update : 10/22/2016 19时18分 常见问题 ImproperlyConfigured: Middleware module "django.contrib.auth.middleware" does not define a "SessionAuthentication... ...
分类:
其他好文 时间:
2016-10-22 20:58:33
阅读次数:
360
In this tutorial we are going to learn how we can accidentally creating memory leaks in our application while using the Angular 2 router. We are going ...
分类:
其他好文 时间:
2016-09-29 02:09:49
阅读次数:
185
Eloquent 1.Automatic model validation 2.Prevent updating 3.Conditional relationships 4.Expressive where syntax 5.Query builder:having raw 6.Simple dat ...
分类:
其他好文 时间:
2016-08-29 12:40:23
阅读次数:
236
本文转自 张鑫旭的文章http://www.zhangxinxu.com/wordpress/2015/12/element-scroll-prevent-parent-element-scroll-js/ ...
分类:
Web程序 时间:
2016-08-09 14:47:29
阅读次数:
168
Item 08-别让异常逃离析构函数(Prevent exceptions from leaving destructors)
C++并不禁止析构函数吐出异常,但它不鼓励你这样做。这是有理由的。
Ex:
class Widget{
public:
~Widget(){...} //假设这个可能吐出一个异常
};
void doSomething()
{
std::vec...
分类:
编程语言 时间:
2016-08-06 19:15:01
阅读次数:
164
http://stackoverflow.com/questions/14974271/can-you-change-a-path-without-reloading-the-controller-in-angularjs ...
分类:
Web程序 时间:
2016-08-05 11:24:27
阅读次数:
154
一、下载搜狗输入法的deb包: http://pinyin.sogou.com/linux/ 二、打开终端输入命令: $ sudo dpkg -i sogoupinyin_2.0.0.0078_i386.deb如果提示缺少依赖包: dpkg: dependency problems prevent ...
分类:
系统相关 时间:
2016-07-23 14:57:22
阅读次数:
926
Nginx's architecture The HTTP core module The server Logging Finding files Name resolution Client interaction Using limits to prevent abuse Restrictin ...
分类:
Web程序 时间:
2016-07-10 16:39:00
阅读次数:
192