1
BOYPT 2015-07-06 17:01:53 +08:00 1
你执行js的时候绑定了这个按钮的事件不就完了么,为什么要暴露。
|
2
yangg 2015-07-06 17:02:25 +08:00 1
$("#permanent_element").on('click', '.selector to dynamic element', function() {
}); |
3
plantain OP @BOYPT 是声明式地生成的,设置viewmodel后,view不会立即改变,这时候绑定的不是最新的view,难道要用settimeout?
|
4
kokdemo 2015-07-06 17:46:09 +08:00 1
……你是想说动态生成的dom绑定不了事件是么?
请用 事件委托 |
5
plantain OP 啊,搞定了
|