如何从 Materialise 的开关中获取值?
How to get the value form Materialize's Switches?
我正在使用 Materialize library and I'm trying to retrieve the value from the switches component,但它总是 returns on
无论它是打开还是关闭。
有没有办法以编程方式确定它是打开还是关闭?
你必须使用.checked
例如:
Javascript:
document.getElementById('mySwitch').checked
JQuery:
$('#mySwitch').prop('checked')
希望对你有所帮助
我正在使用 Materialize library and I'm trying to retrieve the value from the switches component,但它总是 returns on
无论它是打开还是关闭。
有没有办法以编程方式确定它是打开还是关闭?
你必须使用.checked 例如: Javascript:
document.getElementById('mySwitch').checked
JQuery:
$('#mySwitch').prop('checked')
希望对你有所帮助