How does getElementsByName work in Go/WebAssembly?

huangapple go评论78阅读模式
英文:

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").

huangapple
  • 本文由 发表于 2021年11月9日 02:43:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/69888421.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定