mirror of
https://github.com/taigrr/wasm-experiments
synced 2025-01-18 04:03:21 -08:00
Remove gRPC example, add some simpler examples
This commit is contained in:
22
js/main.go
Normal file
22
js/main.go
Normal file
@@ -0,0 +1,22 @@
|
||||
// +build js,wasm
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"syscall/js"
|
||||
)
|
||||
|
||||
var document js.Value
|
||||
|
||||
func init() {
|
||||
document = js.Global().Get("document")
|
||||
}
|
||||
|
||||
func main() {
|
||||
div := document.Call("getElementById", "target")
|
||||
|
||||
node := document.Call("createElement", "div")
|
||||
node.Set("innerHTML", "Hello World")
|
||||
|
||||
div.Call("appendChild", node)
|
||||
}
|
||||
Reference in New Issue
Block a user