- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我编写了以下代码来查看切换按钮的工作情况。但数据绑定(bind)似乎不起作用。
下面是HTML代码
<div>
<label class="switch">
<input type="checkbox" id="toggle123" data-bind="click:isToggleTrueOrFalse" />
<span class="slider round"></span>
</label>
</div>
下面是样式
<style>
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #2196F3;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
</style>
下面是脚本
<script>
self.isToggleTrueOrFalse = ko.computed(function () {
if (document.getElementById('toggle123').checked) {
// return true;
console.log("true");
}
else {
console.log("false");
}
}, self);
</script>
我的要求是在单击切换按钮时我必须在控制台中获取 true 或 false。目前只有 false 出现在控制台中。
我也试过用
<script>
this.toggleAssociation1=function () {
var checkBox = document.getElementById("toggle123");
if (checkBox.checked == true)
{
return true;
}
else
{
return false;
}
}
</script>
和
<input type="checkbox" id="toggle123" data-bind="click:toggleAssociation1" />
但还是不行。
将为此点击事件工作。或者我们必须使用任何其他事件。
谁能帮我解决这个问题。
最佳答案
您为要实现的目标使用了错误的绑定(bind)。 click
绑定(bind)用于调用执行某些操作的函数。另一方面,Observables 和 Computed Observables 旨在保存值。
您需要的是 checked
绑定(bind) ( https://knockoutjs.com/documentation/checked-binding.html )。一旦你使用它,你就不需要下面的代码了——
var checkBox = document.getElementById("toggle123");
if (checkBox.checked == true){
return true;
}
else{
return false;
}
下面是使用checked
绑定(bind)的方法:
function viewmodel(){
var self = this;
self.isToggleTrueOrFalse = ko.observable();
//to check the value whenever it updates, we can subscribe to the observable like this:
self.isToggleTrueOrFalse.subscribe(function(latestValue){
console.log(latestValue);
});
}
ko.applyBindings(viewmodel());
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked+.slider {
background-color: #2196F3;
}
input:focus+.slider {
box-shadow: 0 0 1px #2196F3;
}
input:checked+.slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.2/knockout-min.js"></script>
<div>
<label class="switch">
<input type="checkbox" id="toggle123" data-bind="checked:isToggleTrueOrFalse" />
<span class="slider round"></span>
</label>
</div>
关于html - 如何使用敲除绑定(bind)切换按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53203270/
我不知道如何正确地提出这个问题......我想要两个相互监视并相应变化的变量。一个是小数,另一个是百分比。 我的模型中有一个可观察对象。它从服务器端获取值(value)。 self.varDecima
我正在开发一个看起来像一本书的 SPA(单页应用程序)。 在书的一侧有标签,用户可以单击这些标签以导航到书的不同区域。 这些选项卡还使用 CSS3 转换对其应用了转换效果。 问题是,有时,当我单击其中
来自 this post : I would first suggest that you optimize your dependentObservable (a.k.a. computed). W
我是一名优秀的程序员,十分优秀!