上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页

2023年2月14日

sass和less以及stylus的区别

摘要: 一、区别: 需要配置不同:Sass需要Ruby环境;Less需要引入less.js;Stylus需要安装node 使用语法不用:Sass变量使用$ ;Less变量使用@;stylus变量使用 属性名 = ‘值’ 阅读全文

posted @ 2023-02-14 22:34 爱前端的小魏 阅读(20) 评论(0) 推荐(0) 编辑

less的使用(变量,嵌套,伪元素,伪类,媒体查询)

摘要: //变量 //嵌套 //伪类:如:hover, & 代表当前所选择的标签 //伪元素 如:befor &:: 代表当前选择的标签 //媒体查询 //1.声明变量 @width:500px; @background-color:blue; .wsx { width: @width; height: 1 阅读全文

posted @ 2023-02-14 22:02 爱前端的小魏 阅读(330) 评论(0) 推荐(0) 编辑

Katalon当添加的内容过多时,需要向下滚动寻找(scroll to element)

摘要: 阅读全文

posted @ 2023-02-14 09:11 爱前端的小魏 阅读(17) 评论(0) 推荐(0) 编辑

2023年2月8日

重新请求

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:51 爱前端的小魏 阅读(15) 评论(0) 推荐(0) 编辑

发送请求后,取消请求

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:50 爱前端的小魏 阅读(20) 评论(0) 推荐(0) 编辑

网络异常与网络断开,发送AJAX处理

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid 阅读全文

posted @ 2023-02-08 23:50 爱前端的小魏 阅读(10) 评论(0) 推荐(0) 编辑

解决ie接收服务请求后,存储至本地缓存,再次接收时,直接拿取缓存非最新服务器数据,如何解决:加上时间戳进行解决

摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #result { width: 300px; height: 100px; border: 1px solid r 阅读全文

posted @ 2023-02-08 23:48 爱前端的小魏 阅读(17) 评论(0) 推荐(0) 编辑

修改AJAX内容后,每次都需要重新运行终端?解决方法(nodemon)

摘要: 安装 npm install -g nodemon 使用 nodemon .\server.js 备注:.\server.js是服务器(自己写的) 阅读全文

posted @ 2023-02-08 22:28 爱前端的小魏 阅读(14) 评论(0) 推荐(0) 编辑

2023年2月7日

后端发出请求,前端进行接收(AJAX)

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style> #result { width: 300px; height: 100px; border: 1px solid red; } </style> 阅读全文

posted @ 2023-02-07 23:54 爱前端的小魏 阅读(27) 评论(0) 推荐(0) 编辑

发送post请求,鼠标移入显示内容

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> </title> <style> #result { width: 300px; height: 100px; border: 1px solid red; } </style> 阅读全文

posted @ 2023-02-07 23:52 爱前端的小魏 阅读(18) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页

导航