作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一种情况,我想通知祖 parent 或 $parents[1] subview 模型中发生的点击事件。所以基本上我希望能够做到这一点
self.$parents[1].actionTaken
self.save = function () {
//do stuff to self first, then
self.$parents[1].actionTaken();
};
最佳答案
或使用 bind
诡计
data-bind="click: $parent.foo.bind($parent)"
this
关键字将指向父上下文。
foo: function(child) {
this.children.remove(child);
}
关于knockout.js - 如何在 knockout View 模型点击事件中访问 $parent 或 $parents[]?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18138379/
我是一名优秀的程序员,十分优秀!