数据库:英文为 DataBase,简称DB,它是存储和管理数据的仓库。 数据库管理系统(DataBase Management System,简称DBMS),是操作和管理数据库的大型软件。 SQL(Structured Query Language,简称SQL):结构化查询语言,它是操作关系型数据库的编程语言,定义了一套操作关系型数据库的统一标准。
简介 Ajax axios 代码演示 <html> <head> <title>Ajax</title> <style> table { border-collapse: collapse; } th, td { border: 1px solid black; width: 50px; text-align: cen…
简介 Vue von 代码演示 <html> <head> <title>Vue v-on</title> </head> <body> <div id = "app"> <!-- v-on 绑定事件 --> <!-- 语法: v-on:事件名 = "方法名" --> <!-- @事件名 …
简介 Vue vmodel 代码演示 <html> <head> <title>Vue v-model</title> <style> .flex-container { display: flex; justify-content: space-around; } div { text-align: center; …
简介 Vue vshow 代码演示 <html> <head> <title>Vue v-show</title> <style> table, th, td { border: 1px solid black; width: 500px; text-align: center; } table { border-co…
简介 Vue vif 代码演示 <html> <head> <title>Vue v-if</title> <style> table, th, td { border: 1px solid black; width: 500px; text-align: center; } table { border-collap…
简介 Vue v-bind 代码演示 <html> <head> <title>Vue v-bind</title> <style> table, th, td { border: 1px solid black; width: 500px; text-align: center; } table { border-c…
简介 Vue v-for 代码演示 <html> <head> <title>Vue v-for</title> <style> table, th, td { border: 1px solid black; width: 500px; text-align: center; } table { border-col…
简介 html引入Vue 代码演示 <html> <head> <title>html 引入 Vue</title> </head> <body> <div id = "app"> <!-- 插值表达式 --> {{ message }} </div> <h1>{{count}}</…
简介 Javascript 事件 代码演示 <html> <head> <title>Javascript Event</title> </head> <body> <button id = "btn">点击</button> <script> // 事件 // 事件是某些行为,比如用户点击按钮…