KnockoutJS 有没有办法实现单个元素的多个数据绑定?
我对美妙的 MVC 框架 KnockoutJS 还很陌生。是否可以将多个属性数据绑定在一起?
我想将特定元素的 CSS 和样式数据绑定在一起。例如,
我想根据某些条件将元素的样式和 CSS 数据绑定在一起,例如 h2
。
I am a pretty new to the wonderful MVC framework KnockoutJS. Is it possible to data bind multiple attributes together?
I want to data-bind CSS and style together for a particular element. For example,
I want to data-bind style and CSS together for an element, say h2
based on some conditions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以数据绑定多个属性。您需要用逗号分隔每个属性。
对于造型,这在某种程度上取决于您真正想做的事情。首先,检查淘汰文档 -
对于真正可定制的样式,请查看 Ryan Niemeyer 的小提琴 动态样式,
Yes, you can data bind multiple attributes. You need to separate each attribute with a comma.
For styling, it sort of depends on what you really want to do. As a start, check the knockout documentation -
For really customizable style, take a look at Ryan Niemeyer's fiddle at Dynamic Styling,