作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 jQuery .change()
方法在下拉菜单更改时执行函数。但是,当我尝试这样做时,我收到一条错误消息
Microsoft JScript 运行时错误:“this.ui.dropdownPhase”为 null 或不是对象
我尝试使用 e 来帮助获取控件,但没有成功,dropdownPhase 控件正在中继器中使用因此对我来说准确地知道更改了哪个控件非常重要。
即使我无法通过精确的控制,我至少需要知道哪一行。
this.ui.dropdownPhase.change(function(e) {
var x2 = this.ui.dropdownrPhase;
});
最佳答案
在 change()
回调中,this
设置为当前 DOM 元素。它可能与您之前引用的 this
不同。
要避免此问题,请将外部 this
的引用存储在具有其他名称的变量中:
var me = this;
me.ui.dropdownPhase.change(function(e) {
var x2 = me.ui.dropdownPhase;
});
关于jquery - 如何在 jQuery .change() 函数中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9119621/
我是一名优秀的程序员,十分优秀!