KnockoutJS 有没有办法实现单个元素的多个数据绑定?

发布于 2024-12-14 05:26:48 字数 296 浏览 0 评论 0原文

我对美妙的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

比忠 2024-12-21 05:26:48

是的,您可以数据绑定多个属性。您需要用逗号分隔每个属性。

对于造型,这在某种程度上取决于您真正想做的事情。首先,检查淘汰文档 -

  • CSS Binding
  • 样式绑定
  • 对于真正可定制的样式,请查看 Ryan Niemeyer 的小提琴 动态样式

     var viewModel = {
            大小:ko.observable(2)
        };
    
        viewModel.style = ko.dependentObservable(function() {
            return "h2 { 字体大小: " + this.size() + "em }";
        }, 视图模型);
    
        ko.applyBindings(viewModel);
    

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 -

  • CSS Binding
  • Style Binding
  • For really customizable style, take a look at Ryan Niemeyer's fiddle at Dynamic Styling,

        var viewModel = {
            size: ko.observable(2)
        };
    
        viewModel.style = ko.dependentObservable(function() {
            return "h2 { font-size: " + this.size() + "em }";
        }, viewModel);
    
        ko.applyBindings(viewModel);
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文