摘要: 上篇:34个JavaScript栗子,从易到难。 首次编写js代码,通过alert弹框提示hello world。 <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <script type="text/javascript"> alert("hello world") </script> 阅读全文
posted @ 2022-10-02 22:44 不背锅运维 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 一文带你玩透结构体和方法 结构体的基本定义和使用 package main import ( "fmt" ) //定义结构体类型User type User struct { username string "用户名" password string "密码" mail string "邮箱" } func main() { 阅读全文
posted @ 2022-10-02 22:20 不背锅运维 阅读(59) 评论(0) 推荐(0) 编辑