摘要: html5 拖放功能demo index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta n 阅读全文
posted @ 2022-08-24 14:32 fyc春 阅读(14) 评论(0) 推荐(0) 编辑
摘要: html5 获取经纬度,前提用户开启可获取权限 展示代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <met 阅读全文
posted @ 2022-08-24 14:25 fyc春 阅读(21) 评论(0) 推荐(0) 编辑
摘要: html 原生表单 index.html <form action="http://127.0.0.1:8081/saveData" method="GET" target="_blank" acccept-charset="UTF-8" ectype="application/x-www-form 阅读全文
posted @ 2022-08-24 14:16 fyc春 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 常见传输协议 不够全面会陆续补充 协议 链接 面向 默认端口 备注 HTTP TCP链接 网页 80 超文本传输协议 HTTPS TCP链接 加上 SSL (安全套接层) 网页 443 安全超文本传输协议 () FTP TCP链接 文件 21 文件传输协议 WebSockets TCP链接(单个链接 阅读全文
posted @ 2022-08-23 21:42 fyc春 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 简介:Web Workers 是运行在后台的javaScript 不影响页面的性能, tips: web worker 通常用于耗费 CPU 资源的任务、代码仅做demo 事件描述 postMessage 发送消息 onmessage 消息监听器 App.vue <template> <div id 阅读全文
posted @ 2022-08-23 17:11 fyc春 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 正则表达式常用符号1 、 * 意思为任意的字符串 表数量 重复零次或更多次;2、 + 重复一次或更多次;3、 ? 重复零次或者一次;4、 {n} 重复n次;5、 {n,}重复n次或者更多次;6、 {n,m}重复n~m次;7、 \b 意思为单词的开头或者结尾,为单词的分界处;8、 . 意... 阅读全文
posted @ 2015-12-28 12:55 fyc春 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 一、文本的水平垂直居中 a、单行文本的水平垂直居中 text-align:center; line-height:xx(height值); b、多行文本的水平垂直居中 text-align:center; line-height:xx(height值/行数); vertical-... 阅读全文
posted @ 2015-12-27 16:23 fyc春 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 用一个阿里的13年的题目来解决这个问题, 杭州西湖三日游出行名单 编号 姓名 联系电话 地址 领队签字: 1 Jamson ... 阅读全文
posted @ 2015-12-27 12:29 fyc春 阅读(307) 评论(0) 推荐(0) 编辑