摘要:
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www. 阅读全文
摘要:
1 //indexedDB 2 var dbName = 'whx', version = '1', dbTableName = 'bbg', request, db, conCls, updateKey, fun = new Fun(); 3 function openDbs(){//请求数据库 阅读全文
摘要:
1 <!DOCTYPE html> 2 <html lang='zh'> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="description" content="this is Web dome"/> 6 <meta name="viewpor 阅读全文
摘要:
1 'use strict'; 2 3 class View{ 4 5 constructor(){ 6 7 } 8 9 //创建html元素 10 addEl(fel, elemName, id, cls){ 11 //创建一个元素 12 let el = document.createEleme 阅读全文
摘要:
1 2 HTMLCanvasElement//canvas elem对象 3 属性 4 height//高 5 width//宽 6 方法 7 getContext()//获取<canvas>相关的可绘制的上下文 8 toBlob()//(ie 不支持)此方法可以将<canvas>画布转换为base 阅读全文
摘要:
1 /* 2 定义: 3 type 接口名 interface{ 4 方法名(可选:参数列表) 可选:返回值列表 || (可选:返回值列表) 5 } 6 例:type Writer interface { 7 Write(p []byte) (n int, err error) 8 } 9 type 阅读全文
摘要:
1 /* 2 3 结构体变量: 4 结构体的定义只是一种内存布局的描述,只有当结构体实例化时,才会真正地分配内存, 5 因此必须在定义结构体并实例化后才能使用结构体的字段。 6 type 类型名 struct { 7 字段1 字段1类型 8 字段2 字段2类型 9 … 10 } 11 指针类型的结构 阅读全文
摘要:
1 2 /* 3 单个包: 4 improt "包目录的路径" 5 多个包: 6 improt ("包目录的路径", "包目录的路径") 7 improt ( 8 "包目录的路径" 9 "包目录的路径" 10 ) 11 自定义引用的包名 : 12 import ( 13 "包目录的路径" 14 "c 阅读全文
摘要:
1 package info_websocket 2 3 import ( 4 "crypto/sha1" 5 "encoding/base64" 6 "errors" 7 "io" 8 "log" 9 "net" 10 "strings" 11 ) 12 13 func main() { 14 l 阅读全文
摘要:
1 /* 2 if : if 语句 由一个布尔表达式后紧跟一个或多个语句组成 3 4 is else : if 语句 后可以使用可选的 else 语句, else 语句中的表达式在布尔表达式为 false 时执行 5 6 switch : switch 语句用于基于不同条件执行不同动作 7 8 se 阅读全文