11 2022 档案
摘要:Exercise Test01 初识MySQL 命令行连接数据库 mysql -u root -p --连接数据库 update mysql.user set authentication_string=password('123456') where user='root' and Host='l
阅读全文
摘要:Exercise Application Hello World <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
阅读全文
摘要:Exercise Test01 严格检查模式strict 'use strict'; //预防js的随意性导致产生的一些问题,必须放在第一行 let i = 1; //局部变量建议都用let定义 数据类型 数值、文本、图形、音频、视频...... 变量: var 清清 = "wjx"; Number
阅读全文
摘要:Exercise Test01 变量与JSON javascript 常用变量类型: Numbers,String,Boolean, Object:Array,Undefined,Null const name1 = 'John' //String const age = 22; //Numbers
阅读全文