1 <?php 2 $s=0; 3 for($i=100;$i<=999;$i++){ 4 if($i%2==1){ 5 $s+=$i; 6 } 7 } 8 echo $s; 9 echo "<br>"; 10 ?> 1 function getQ($num, $sum = 0) { 2 $numQ ...
分类:
Web程序 时间:
2021-06-28 18:50:45
阅读次数:
0
kubectl -n kube-system exec -it $pod -- ovs-vsctl list-ports br-int ovnip=`ip a | grep "scope global ovn4nfv0" |awk '{match($0, /.+inet\s([^ /]*)/, a) ...
分类:
其他好文 时间:
2021-06-10 17:55:40
阅读次数:
0
<form> <label for="male">Male</label> <input type="radio" name="sex" id="male" /> <br /> <label for="female">Female</label> <input type="radio" name=" ...
分类:
其他好文 时间:
2021-06-07 20:32:25
阅读次数:
0
要写在<html lang="en"> </html>里 title标签:网页标题meta标签:描述网页是干什么的head标签: 网页的主体标题标签:<h1></h1>段落标签<p></p>换行标签<br/>自闭和水平线标签<hr/>生成一条线 粗体标签<strong></strong>斜体标签<e ...
分类:
其他好文 时间:
2021-06-02 11:03:54
阅读次数:
0
public htmlToText(html: string) { return html .replace(/<br>/g, '') .replace(/<p>/g, '') .replace(/<\/p>/g, '') .replace(/<\s*b[^>]*>/g, '') .replace( ...
分类:
Web程序 时间:
2021-05-24 17:18:14
阅读次数:
0
Vue页面template <template> <div> <canvas style="width: 80%!important;height: auto!important;" id="canvas"></canvas> <br/>{{charId}} </div> </template> V ...
分类:
Web程序 时间:
2021-05-24 09:24:28
阅读次数:
0
先用ifconfig br_name down 停掉网桥 再用brctl delbr br_name 删除网桥 为了方便,我编写了shell脚本来删除网桥 #!/bin/bash #本脚本删除的是br-开头的网桥 BRIDGE_LIST=$(sudo brctl show | cut -f 1 | ...
分类:
其他好文 时间:
2021-05-24 06:19:17
阅读次数:
0
文件上传 1.前端加入表单 <form method="POST" , action = "/Upload", enctype="multipart/form-data"> <input type="file", name = "file"/><br> <input type="submit", v ...
分类:
Web程序 时间:
2021-05-24 05:55:31
阅读次数:
0
一些基本概念 标签 标题:<h1>-<h6>(从大到小) 段落:<p> 链接:<a> baidu <a href="http://www.baidu.com">baidu</a> 图像:<img> <img src="XXX" width="300" height="300" /> 换行:<br / ...
分类:
Web程序 时间:
2021-04-26 13:24:01
阅读次数:
0
<br>换行标记(单独的Enter在HTML只会被当作一个特殊字符,不属于换行符) <P>段落标记 如:<P>第二段</P> 标题标记:分1-6级标题,其中<h1>为1级标题,<h2>为2级标题,以此类推到<6> 标题标记格式:<h1>标题1</h1> 居中标记:<center><h1>标题1</h ...
分类:
Web程序 时间:
2021-04-22 15:20:34
阅读次数:
0