摘要:Web入门 SpringBoot HTTP协议 响应状态码
阅读全文
摘要:maven 完成maven安装配置 同时学习导入maven项目 依赖配置 依赖传递 依赖范围 生命周期
阅读全文
摘要:Vue路由 同时了解了Element组件完成页面 部署 这两天主要了解Vue编程了解
阅读全文
摘要:前端工程化 进行了环境准备下载了Node.js 并进行环境变量的验证,对Node进行相关配置 完成vue脚手架安装进行项目创建
阅读全文
摘要:Vue学习 点击查看代码 <html> <head> <title>Vue-入门</title> <script src="index.jsp"></script> </head> <body> <div id="app"> <a v-bind:href="url">连接1</a> <a :href
阅读全文
摘要:事件 事件绑定 点击查看代码 <html> <head> <title>Title</title> </head> <body> <input type="button" id="btn1" value="事件绑定1" onclick="on()"> <input type="button" id=
阅读全文
摘要:js 对象 Array 特点:长度可变,类型可变; 点击查看代码 var arr = [1,2,3,4]; for(let i = 0;i<arr.length;i++){ console.log(arr[i]); } //forEach:遍历数组中有值的元素 arr.forEach(functio
阅读全文
摘要:学习了js的相关知识 点击查看代码 <html> <head> <title>$Title$</title> <script> window.alert("hadioho"); document.write("isafhlsa"); console.log("diasdo"); </script>
阅读全文
摘要:表格表单标签 1.表格标签 点击查看代码 <table border="1px" width="600px" cellspacing="0"> <tr> <th>序号</th> <th>学号</th> <th>姓名</th> </tr> <tr> <td>1</td> <td>23</td> <td
阅读全文
摘要:正文排版 点击查看代码 <html> <head> <title>新闻</title> <style> h1{ color: brown; } .cls{ color: aquamarine; } a{ color: blue; text-decoration: none; } p{ text-in
阅读全文
摘要:标题的排版 1.css引入方式 行内样式: 内嵌样式: eg: 点击查看代码 <html> <head> <title>新闻</title> <style> h1{ color: brown; } </style> </head> <body> <img src="55a5bd46d103204cb
阅读全文
摘要:初步认识了web,同时开始了web前端的学习: 1.html结构标签 标题 </body> 2.特点 html标签不区分大小写 html标签属性值单双引号都可以 html语法松散 图片标签: src:指定图像的url(绝对路径/相对路径) .\:当前目录,./可以省略 ..\:上一级目录 width
阅读全文