上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: <!DOCTYPE html><html><head> <title>Demo</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript" sr 阅读全文
posted @ 2023-07-21 14:54 mrt_yy 阅读(410) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>拖拽画直线</title></head><style> body { background: #eeeeee; } #controls { position: ab 阅读全文
posted @ 2023-07-21 14:36 mrt_yy 阅读(227) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script src="./js/jq.js"></script> <style> * { padding: 0; margin: 0; } </style> 阅读全文
posted @ 2023-07-21 14:34 mrt_yy 阅读(58) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <style> #progress_bar { margin: 10px 0; padding: 3px; border: 1px solid #000; fo 阅读全文
posted @ 2023-03-21 11:01 mrt_yy 阅读(280) 评论(0) 推荐(0)
摘要: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <input type="file" onchange="onchange"> <div></div> <img src="" i 阅读全文
posted @ 2023-03-14 11:14 mrt_yy 阅读(33) 评论(0) 推荐(0)
摘要: const resultComps = {};let requireComponent = require.context( './', // 在当前目录下查找 true, //false 不遍历子文件夹 true 遍历子文件夹 /\.vue$/ // 正则匹配 以 .vue结尾的文件 ) requ 阅读全文
posted @ 2023-02-02 15:20 mrt_yy 阅读(73) 评论(0) 推荐(0)
摘要: 一、 准备工作 1. 安装cpolar 想要让自己的pc联网,我们可以先了解一个概念——内网穿透[1],通过这种技术,就能实现本地PC端充当服务器的目的。 那么,如何实现内网穿透呢?这里我们就引入一个工具——cpolar[2],它是利用内网穿透技术,将内网下的本地服务器通过安全隧道暴露至公网。达到公 阅读全文
posted @ 2022-12-30 10:15 mrt_yy 阅读(120) 评论(0) 推荐(0)
摘要: nginx root与alias区别root和alias都用来指定页面路径,但用法不同 使用位置不同 [root] 语法:root path 默认值:root html 配置段:http、server、location、if [alias] 语法:alias path 配置段:location 在 阅读全文
posted @ 2022-09-02 11:36 mrt_yy 阅读(228) 评论(0) 推荐(0)
摘要: function hashcode(str) { var hash = 0, i, chr, len; if (str.length 0) return hash; for (i = 0, len = str.length; i < len; i++) { chr = str.charCodeAt( 阅读全文
posted @ 2022-08-30 14:43 mrt_yy 阅读(1033) 评论(0) 推荐(0)
摘要: 一、查看是否已经安装了vsftpd vsftpd -version 二、安装vsftpd yum install -y vsftpd 三、新建FTP目录 创建的FTP目录 /data/ftp mkdir -p /data/ftp 四、创建新用户 guoke为你为该ftp创建的用户名,/data/ft 阅读全文
posted @ 2022-08-29 16:59 mrt_yy 阅读(179) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 23 下一页