作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取 ID 和复选框状态(我将 CSS 作为按钮 CSS Button )
按钮名称以及是否处于事件状态
<div class="onoffswitch">
<input type="checkbox" data-bind="checked: ioValue" class="onoffswitch-checkbox" id="io1">
<label class="onoffswitch-label" for="io1">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
按钮工作并显示 true false,我不知道如何获取 ID
self.ioEvent = function(data, event) {
console.log(1)
console.log(data)
console.log(data[0])
console.log(data[1])
$.ajax({
type: "GET",
dataType: "json",
data: {"io": data[0], "status": data[1]},
url: "/plugin/test/setIOcheckbox",
async: false
});
}
最佳答案
event.target.id 应该为您提供“ID”
关于javascript - 复选框数据绑定(bind)返回两个值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43290183/
我是一名优秀的程序员,十分优秀!