英文:
How does getElementsByName work in Go/WebAssembly?
问题
我正在使用Go和WebAssembly进行DOM操作。如果我有以下代码:
jsDoc := js.Global().Get("document")
getradio := jsDoc.Call("getElementsByName", "myradiobuttons")
getradio的类型是什么?如何找到被选中的单选按钮?
英文:
I am using Go and WebAssembly to do DOM manipulation. If I have something like this:
jsDoc := js.Global().Get("document")
getradio := jsDoc.Call("getElementsByName", "myradiobuttons")
What type is getradio? how do I find the radio button that was checked?
答案1
得分: 1
Call
将返回一个Value类型。在JavaScript中,getElementByName
函数应该返回一个NodeList。因此,你可以使用getradio.Call("item", 0)
、getradio.Call("item", 1)
等来获取单个选项,然后检查checked
属性是否为true:getradio.Call("item", 0).Get("checked")
。
英文:
Call
will return a Value type. The getElementByName function in javascript should return a NodeList. So presumably you can do getradio.Call("item", 0)
, getradio.Call("item", 1)
, ect. to get your individual options, and then check if the checked
property is true: getradio.Call("item", 0).Get("checked")
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论