作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的是 jQuery 版本 1.5.1,但这对我不起作用:
$(window).ajaxComplete(function() {
console.log('hello');
});
但这是:
$(document).ajaxComplete(function() {
console.log('hello');
});
为什么我无法将事件处理程序附加到 $(window)
?
注意:此代码适用于 jQuery v1.3.2,但不适用于 v1.5.1
最佳答案
可能是因为窗口
是
1.) Not an element
2.) Somewhat 'protected' by the browser's js engine
3.) a bad idea when looking for something to attach an AJAX event to
为什么不能使用 document
或元素来代替?
关于jquery - ajaxComplete 不适用于 $(window),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5504619/
我是一名优秀的程序员,十分优秀!