gpt4 book ai didi

javascript - 如何 mvvm 数据绑定(bind)剑道单选按钮值属性?

转载 作者:行者123 更新时间:2023-11-30 17:15:36 24 4
gpt4 key购买 nike

我正在尝试将我的两个单选按钮与 kendo MVVM 绑定(bind)。但是,它始终默认不选中任何单选按钮。这是剑道 MVVM 中的错误吗?我希望在您第一次看到该页面时选中其中一个单选按钮。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>

<link href="http://cdn.kendostatic.com/2014.2.716/styles/kendo.common.min.css" rel="stylesheet">
<script src="http://cdn.kendostatic.com/2014.2.716/js/jquery.min.js" type="text/javascript"></script>
<script src="http://cdn.kendostatic.com/2014.2.716/js/kendo.web.min.js" type="text/javascript"></script>

</head>
<body id="main">
<input type="radio" data-bind="value: Permission.Read, checked: checkedValue" name="RadioGroup0" />
<input type="radio" data-bind="value: Permission.Modify, checked: checkedValue" name="RadioGroup0" />

<script type="text/javascript">
viewModel = new kendo.observable({
checkedValue: 2,
Permission: {
Read: 1,
Modify: 2
}
});
kendo.bind($("#main"), viewModel);
</script>
</body>
</html>

http://jsbin.com/bageveta/27/edit?html,console,output

最佳答案

使用 attr 绑定(bind)。

<input type="radio" data-bind="attr: { value: Permission.Read }, checked: checkedValue" name="RadioGroup0"/>
<input type="radio" data-bind="attr: { value: Permission.Modify }, checked: checkedValue" name="RadioGroup0"/>

http://jsbin.com/bageveta/30/edit

关于javascript - 如何 mvvm 数据绑定(bind)剑道单选按钮值属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26182280/

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