当使用Knockout的foreach绑定时,我试图在将项目添加到列表时复制分类黄色的fading。 (来自Here)
这是我的代码
<div id="minicartItems" data-bind="template: { foreach: DisplayItems, beforeRemove: ElementFadeOut, afterAdd: ElementFadeIn }">
<div data-bind="attr: { id: 'sideCartItm' + $index() }">
<!-- ko if: IsFleet() -->
<!-- DO STUFF -->
<!-- /ko -->
<!-- ko ifnot: IsFleet() -->
<!-- DO STUFF -->
<!-- /ko -->
</div>
</div>
在我的VM中:
self.ElementFadeOut = function (element, index, data) {
$(element).fadeOut();
// $(element.id).fadeOut(); ADDING .ID doesnt work either because its text node.
}
self.ElementFadeIn = function (element, index, data) {
$(element)
.animate({ backgroundColor: 'yellow' }, 200)
.animate({ backgroundColor: 'white' }, 800);
}
但是,添加或删除项目时,我在控制台上出现错误(并且不会发生淡入淡出)。
jquery-1.8.3.min.js:2 Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
at Dt (jquery-1.8.3.min.js:2)
at Function.css (jquery-1.8.3.min.js:2)
at Gt (jquery-1.8.3.min.js:2)
at Object.Gn (jquery-1.8.3.min.js:2)
at Kn (jquery-1.8.3.min.js:2)
at Text.o (jquery-1.8.3.min.js:2)
at Function.dequeue (jquery-1.8.3.min.js:2)
at Text.<anonymous> (jquery-1.8.3.min.js:2)
at Function.each (jquery-1.8.3.min.js:2)
at init.each (jquery-1.8.3.min.js:2)
根据我的调查,看来element
参数不是element类型的,它不是textnode类型的。
以下是调试器中element
的快照:
如果先展开parentNode
,然后再展开child nodes
,我可以看到存在text和div节点,但是我不确定为什么。
如何获取发送元素节点而不是文本节点的函数?
答案 0 :(得分:0)
使用afterRender
代替afterAdd
是解决方案-DOM元素只有在呈现后才能添加! http://knockoutjs.com/documentation/template-binding.html#note-4-using-afterrender-afteradd-and-beforeremove