学习HTML5的第三天: 1.带样式的表格表单 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>表格表单</title> <style type="text/css"> tr { border: none; height: 30 ...
分类:
Web程序 时间:
2021-07-01 16:36:54
阅读次数:
0
(一)单字符串 1, grep -o "查找字符串" 文件名 | wc -l 2, awk -v RS="@#$j" '{print gsub(/targetStr/,"&")}' filename awk '{s+=gsub(/targetStr/,"&")}END{print s}' filen ...
分类:
系统相关 时间:
2021-06-30 17:41:59
阅读次数:
0
1 <?php 2 // 乘法口诀 3 echo'<table width="800" height="200" border="1">'; 4 for($i=1;$i<=9;$i++) 5 { 6 echo'<tr>'; 7 for($j=1;$j<=$i;$j++) 8 { 9 echo'<td ...
分类:
Web程序 时间:
2021-06-28 18:52:56
阅读次数:
0
select t.type,t.name 表名 from sysobjects t where t.type in ('U','v' ,'TR') and t.name like '%%';select t.type,t.name 表名,f.name 列名 from sysobjects t, sy ...
分类:
数据库 时间:
2021-06-28 18:13:06
阅读次数:
0
1.弹出框表单里面获取对应要编辑的值 (jQuery 取值+赋值) <tr> <td>{{item.fid}}</td> 3 <td>{{item.name}}</td> 2 <td>{{item.price}}</td> 1 <td>{{item.quantity}}</td> 0 <td><a ...
分类:
其他好文 时间:
2021-06-28 17:40:26
阅读次数:
0
创建本地定时任务(注意修改时间) schtasks /create /sc once /tn testtask02 /tr "calc.exe" /sd 2021/06/19 /st 19:07 创建远程计算机的定时任务 schtasks /s 192.168.200.20 /u abking /p ...
分类:
其他好文 时间:
2021-06-20 17:44:36
阅读次数:
0
脚本内容: #!/bin/bash function findProc() { PROC_NAME=ftp ProcNumber=`ps -ef |grep -w $PROC_NAME|grep -v grep|wc -l` if [ $ProcNumber -le 0 ];then fileftp ...
分类:
Web程序 时间:
2021-06-15 17:53:21
阅读次数:
0
一、防火墙 systemctl status firewalld.service # 查看防火墙状态 systemctl stop firewalld.service # 关闭防火墙 systemctl disable firewalld.service # 禁用防火墙 二、Selinux vi / ...
分类:
系统相关 时间:
2021-06-11 18:01:38
阅读次数:
0
for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:
编程语言 时间:
2021-06-07 20:49:35
阅读次数:
0
Install qBittorrent or Transmission Magnet Linkmagnet:?xt=urn:btih:351411DFA7D5A5EC1883D9B749D13FD2476BB3CD&tr=http%3A%2F%2Fbt2.t-ru.org%2Fann%3Fmagne ...
分类:
其他好文 时间:
2021-06-04 19:29:05
阅读次数:
0