#猜你喜欢模块制作 ##主要知识点:结构伪类选择器和伪元素选择器&常规页面布局 ###HTML结构 <!-- 猜你喜欢模块 --> <div class="like"> <div class="hd"> <div class="left">猜你喜欢</div> <div class="right"> ...
分类:
Web程序 时间:
2021-04-27 14:55:10
阅读次数:
0
##CSS引用方式 外部引用 : 最理想的引用方式 , 就是将CSS代码与HTML代码分别放在不同的文件中 , 然后通过HTML中的<link/>标签来引用 , 如下: 外部引入CSS演示 代码 : <!DOCTYPE html> <html> <head> <title>外联样式引入</title ...
分类:
Web程序 时间:
2021-04-27 14:52:36
阅读次数:
0
https://www.cnblogs.com/hepeng/p/8780552.html public class ShareMem { [DllImport("user32.dll", CharSet = CharSet.Auto)] public static extern IntPtr Se ...
Mware虚拟机:https://www.vmware.com/cn.html?系统镜像:https://msdn.itellyou.cn/?激活码:16:ZF3R0-FHED2-M80TY-8QYGC-NPKYF15:FC7D0-D1YDL-M8DXZ-CYPZE-P2AY612:ZC3TK-63 ...
分类:
其他好文 时间:
2021-04-27 14:29:46
阅读次数:
0
简单的定义 const numArr:number[]=[1,2,3] const strArr:string[]=['a','b','c'] const undeArr:undefined[]=[undefined,undefined] 数组中有字符串又有数组的类型 const arr:(numb ...
分类:
编程语言 时间:
2021-04-27 14:24:27
阅读次数:
0
参考:https://www.cnblogs.com/fuhai/p/7169805.html 正则表达式匹配主要有两种,匹配字符和匹配位置。环视我个人理解应该更像是匹配位置的。具体下文说到。下面先看一下环视的正则表达式书写格式。 类型 正则表达式 匹配成功条件 肯定逆序环视 (?<=expresi ...
分类:
其他好文 时间:
2021-04-27 14:14:39
阅读次数:
0
html <input id="upload_file" type="file" multiple @change="v_upload_files"/> 注意input file 是不支持v-model的,因为v-model是双向数据绑定,而input file里面的文件只能通过点击选取来进行变更。 ...
分类:
移动开发 时间:
2021-04-26 14:11:33
阅读次数:
0
参考资料: https://www.luogu.com.cn/blog/Karry5307/eulerian-numbers https://www.cnblogs.com/mengnan/p/9307521.html 欧拉数:\(\langle\begin{matrix}n\\ k\end{mat ...
分类:
其他好文 时间:
2021-04-26 14:09:23
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts 测试</title> <!-- 引入 echarts.js --> <script src="https://cdn.jsdelivr.net/npm/echart ...
分类:
其他好文 时间:
2021-04-26 13:59:33
阅读次数:
0
double a = 123456, b = 123456.1, c = 123456.12, d = 123456.123, e = 123456.126; Console.WriteLine(a.ToString("N")); //123,456.00 Console.WriteLine(b.T ...