我如何更改 switchButton 在 smartface 中的值?
How can i change switchButton's value in smartface?
我正在从数据库中获取 true
或 false
值,我想通过查看该值来更改 switchButton 的位置。
我有如下代码,但它不起作用。
x[0].childNodes[0].nodeValue
可以是 True
或 False
和
if (x[0].childNodes[0].nodeValue) switchButton1.checked;
必须定义 switchButton 的 checked 变量才能更改它。喜欢:switchButton.checked = true;
希望对您有所帮助! :)
我正在从数据库中获取 true
或 false
值,我想通过查看该值来更改 switchButton 的位置。
我有如下代码,但它不起作用。
x[0].childNodes[0].nodeValue
可以是 True
或 False
和
if (x[0].childNodes[0].nodeValue) switchButton1.checked;
必须定义 switchButton 的 checked 变量才能更改它。喜欢:switchButton.checked = true;
希望对您有所帮助! :)