如何使用 DOM html 操作拨动开关
How to manipulate a toggle switch with DOM html
我使用 Pug 设计了一个切换按钮,当它被点击时我是 运行 function1。但我想做的是,当页面加载时,我从后端获取一个值,我想用它来设置切换按钮的初始状态。有没有办法使用 DOM 操作来更改下面的切换按钮?或者从客户端 Javascript?
p Hours Button
label.switch#toggleButton
input(type='checkbox' onchange='function1(this)')
span.slider.round
我在想 document.getElementById("toggleButton").attr(checked)
之类的东西。任何帮助将不胜感激。
在 属性 state
中传递 true
或 false
的值,例如 { state: true }
如果使用 Express。
p Hours Button
label.switch#toggleButton
input(type="checkbox" onchange="function1(this)" checked=state)
span.slider.round
我使用 Pug 设计了一个切换按钮,当它被点击时我是 运行 function1。但我想做的是,当页面加载时,我从后端获取一个值,我想用它来设置切换按钮的初始状态。有没有办法使用 DOM 操作来更改下面的切换按钮?或者从客户端 Javascript?
p Hours Button
label.switch#toggleButton
input(type='checkbox' onchange='function1(this)')
span.slider.round
我在想 document.getElementById("toggleButton").attr(checked)
之类的东西。任何帮助将不胜感激。
在 属性 state
中传递 true
或 false
的值,例如 { state: true }
如果使用 Express。
p Hours Button
label.switch#toggleButton
input(type="checkbox" onchange="function1(this)" checked=state)
span.slider.round