gpt4 book ai didi

javascript - 如何使用 Knockout JS 添加类?

转载 作者:行者123 更新时间:2023-11-28 19:49:58 24 4
gpt4 key购买 nike

我是第一次尝试 Knockout,并且已经完成了基本教程并查看了各种示例。

但是trying it myself (jsFiddle) 不太有效。

我想做的就是在单击“Click me”文本时将 open 类添加到 div。

我在这里缺少什么?

//HTML
<div class="clickMe" data-bind="click: expand">Click me</div>

<div class="wrapper">
<div class="content" data-bind="css: {expandMenu : open}">
This is a test
</div>
</div>

//JS
function viewModel() {
var self = this;

self.expandMenu = ko.observable(false);

self.expand = function () {
self.expandMenu(!self.expandMenu());
};
};
ko.applyBindings(new viewModel());

// CSS
.content {display: none;}
.content.open {display: block;}

最佳答案

要使用 css 绑定(bind)中的 observable 修复此开关类名称:

data-bind="css: {open : expandMenu}"

另外,你可以使用css绑定(bind)是这样的格式:

data-bind="css: getClassForSomething()" // getClassForSomething must return css class (string)

data-bind="css: { open: isSomethingDone() }" // considering that isSomethingDone is viewmodel's method

关于javascript - 如何使用 Knockout JS 添加类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23655663/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com