<!DOCTYPE html><html><head></head><body><script>var nubList = [{expressId: "00001", //快递单号IDexpressNum: "数据1"},{expressId: "00002", //快递单号IDexpressNum ...
分类:
编程语言 时间:
2020-12-16 11:46:46
阅读次数:
5
1) <meta http-equiv="refresh" content="10"> 10表示间隔10秒刷新一次 2) <script> window.location.reload(true); </script> 如果是你要刷新某一个iframe就把window给换成frame的名字或ID号 ...
分类:
Web程序 时间:
2020-12-16 11:42:25
阅读次数:
4
Logging to syslog from Your Script Problem You’d like your script to be able to log to syslog. Solution Use logger, Netcat, or bash’s built-in network ...
分类:
其他好文 时间:
2020-12-15 12:59:05
阅读次数:
9
############## [work@xxx log]$ cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" BOOTPROTO="static" HWADDR="f4:53:4g:cb:80:ee" MTU="1500" TY ...
分类:
其他好文 时间:
2020-12-15 12:07:36
阅读次数:
2
需求: 在做公司文件共享系统的项目的时候,遇到个单次上传最大个数10的需求。 过程: 去翻了文档,看到limit这个属性,美滋滋的加上了。自测了下,选择11个确实执行了on-exceed对应的方法,提示出来超出限制。 提测阶段: 测试突然说我这个限制有bug,最后测试确实是存在bug,原因是文档这个 ...
分类:
Web程序 时间:
2020-12-14 13:38:53
阅读次数:
7
一般三步就够了 sudo vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 ONBOOT=yes service network restart 路由器设置为dhcp模式,进入cd /etc/sysconfig/network-scripts/ls查找有没 ...
分类:
其他好文 时间:
2020-12-14 12:58:31
阅读次数:
3
主题(Subjects) 什么是主题?Rxjs 主题就是一个特性类型的 Observable 对象,它允许值多路广播给观察者(Observers)。当一个简单的 Observable 是单播的(每个订阅的观察者它们自己都依赖 Observable 的执行)时候,主题(Subjects)就是多播的。 ...
分类:
Web程序 时间:
2020-12-10 11:20:55
阅读次数:
8
问题描述:Uncaught ReferenceError: ···is not defined 所遇到的问题及解决办法: 引号的基本问题: li_last.innerHTML = "<a href='#'onclick='searchUserge(" + next + "," +username+" ...
分类:
编程语言 时间:
2020-12-10 10:47:21
阅读次数:
5
PowerShell scripts Run PowerShell on Windows as a administrator. And set the execution policy. Set-ExecutionPolicy Unrestricted Following is a simple ...
分类:
Web程序 时间:
2020-12-10 10:45:47
阅读次数:
6
1、因为在centos7中/etc/rc.d/rc.local的权限被降低了,所以需要赋予其可执行权 chmod +x /etc/rc.d/rc.local 2、赋予脚本可执行权限假设/usr/local/script/autostart.sh是你的脚本路径,给予执行权限 chmod +x /usr ...
分类:
其他好文 时间:
2020-12-09 12:19:52
阅读次数:
5