1 无序列表 2 <ul type="xxx"> 3 <li>Coffee</li> 4 <li>Milk</li> 5 </ul> 6 7 有序列表 8 <ol start="50"> 9 <li>咖啡</li> 10 <li>牛奶</li> 11 <li>茶</li> 12 </ol> 13 1 ...
分类:
Web程序 时间:
2020-07-31 14:07:53
阅读次数:
111
content的取值为webkit,ie-comp,ie-stand之一,区分大小写,分别代表用webkit内核,IE兼容内核,IE标准内核。 若页面需默认用极速核,增加标签:<meta name="renderer" content="webkit"> 若页面需默认用ie兼容内核,增加标签:<me ...
分类:
其他好文 时间:
2020-07-30 16:52:33
阅读次数:
89
power_two.cpp内容如下: #include <iostream> using namespace std; bool is_power_of_two(unsigned int n) { return (n && !(n & (n-1))); } int main(int argc, ch ...
分类:
其他好文 时间:
2020-07-29 15:07:26
阅读次数:
62
利用ref属性//父组件 <template> <div class="home"> <HelloWorld ref="mychild"></HelloWorld> <div @click="clickParent">click me</div> </div> </template> <script ...
分类:
其他好文 时间:
2020-07-29 14:32:24
阅读次数:
53
安装说明文档下载docker for windows 网上大片的教程 就不说了 安装完之后,为了下载docker images速度快一点可以使用阿里云的镜像加速,免费的,很实用,然后打开docker 第一次启动比较慢。 打开之后 右下角任务栏中 docker图标 右键setting docker e ...
1、Linux命令 1、普通常用指令 1、cd 2、pwd 3、mkdir (mE k to) 4、touch 5、ls 6、cat 7、cp 8、mv 9、rm 10、clear ...
分类:
系统相关 时间:
2020-07-28 22:45:00
阅读次数:
81
容器 简介 Swoft 基于 PSR-11 规范设计了自己容器,并基于 注解 增强了它的功能。容器是 Swoft 最重要的设计,称得上是 Swoft 的核心精髓,也是 Swoft 各模块的实现基础。本章节将会对容器的相关基础知识做一个介绍,以便大家更好的理解容器。 前置知识 - IoC IoC 即控 ...
分类:
Web程序 时间:
2020-07-28 17:03:05
阅读次数:
89
看了好久的wp才做出来的一道题目,感觉自己太菜了。 给出源码(加了几条注释) #! /usr/bin/env python #encoding=utf-8 from flask import Flask from flask import request import socket import h ...
分类:
其他好文 时间:
2020-07-27 17:42:11
阅读次数:
65
I.MX6U 启动方式详解 1、启动方式的选择 根据 NXP(恩智浦)官方提供的 I.MX6U 参考手册 chapter8:System Boot OverviewThe boot process begins at Power On Reset (POR) where the hardware r ...
分类:
其他好文 时间:
2020-07-27 09:31:49
阅读次数:
110
以前想要获取网易云外链播放只要一键就生成了 然鹅,得益于国人优秀的版权意识hhh,现在要另辟蹊径了 问题不大只要获取歌曲网页比如: Run Away with Me: https://music.163.com/#/song?id=17691338 相对应的外链就会是: http://music.1 ...
分类:
其他好文 时间:
2020-07-26 19:00:59
阅读次数:
174