现在我正在将车把模板附加到 div。我想在代码上使用它-
test = $(".someClass:onScreen")
我知道 onScreen 有效,因为我在将鼠标悬停在该类上时已经记录了同一行,并且它会在屏幕上返回内容。现在,这种情况正在发生,因为我在要附加到的 div 中的内容上有一个 slideUp() 。我知道这一点,因为当我执行 slideDown() 时,该行会正确返回内容。
我该如何解决这个问题?slideUp 完成后我可以收听一些事件吗?
编辑-
我也尝试使用 Jquery slideUps 回调,但仍然无济于事 -
@$el.find("#container").slideDown('fast',@appendSearchResults(resultsCollection))
@$el.find("#container").empty()
appendSearchResults:(resultsCollection)=>
@$el.find("#searchContainerId").append(Handlebars.templates["resultsPage"](
row: resultsCollection.toJSON()
nResults: resultsCollection.length
))
@genImageToolTip()
console.log("testing ons creen")
test = $(".carImageClass:onScreen")
console.log(test)