Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以识别 KnockoutJS 中的属性更改事件吗?
我在 jQuery 中找到了解决方案: Firing event on DOM attribute change 。
但如果我能用 KO 就更好了。
如果属性更改绑定到视图模型中的属性,那么您只需订阅该属性即可获得更改通知。
myViewModel.myProperty.subscribe(function(newValue) { alert("This property changed!!"); });