最新文章
-
CentOS 7关闭默认防火墙
systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 firewall-cmd --state #查看默认防火墙状态(…… -
常用的正则表达式
//正整数 /^[0-9]*[1-9][0-9]*$/; //负整数 /^-[0-9]*[1-9][0-9]*$/; //正浮点数 /^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9]…… -
常用JS功能
11、后退 前进 12、返回 13、查看源码 14、禁止查看源码 15、刷新按钮 1、 function ReloadButton(){location.href="i001.htm";} 2、 16、状态栏…… -
JavaScript取整
丢弃小数部分,保留整数部分 parseInt(5/2) 向上取整,有小数就整数部分加1 Math.ceil(5/2) 四舍五入 Math.round(5/2) 向下取整 Math.floor(5/2) Math 对象…… -
置顶 前端常用JS代码
1、设置Cookie setCookie(参数名, 参数, expiredays) function setCookie(c_name, value, expiredays) { var exdate = new Date(); var times = exda…… -
VPS精简代码
yum remove Deployment_Guide-en-US finger cups-libs cups ypbind yum remove bluez-libs desktop-file-utils ppp rp-pppoe wireless-tools irda-utils yum …… -
WordPress更改新域名
方法一:修改wp-config.php 在wp-config.php中,添加以下两行内容:define('WP_HOME','http://www.newdomain.com');define('WP_SITEURL','http://www.newdoma…… -
关于苹果设备微信音乐无法播放 音乐控制代码 play()的问题
var audio = document.getElementById('audio'); document.addEventListener("WeixinJSBridgeReady", function() { audio.play(); audi…… -
centos 安装iftop 以及遇到的问题
今天想监控下vps的流量 往上找了下 都是安装iftop这个工具 然后就遇到各种问题 首先 yum install iftop 返回: Loaded plugins: fastestmirror Setting up In…… -
VPS真实可用内存一键测试脚本 检查VPS主机服务商超售状态神器
注意事项 这里测试的内存为 Ram+Swap的总和。Ram是指我们通常所指的内存,Swap指的是 突发内存 ,不可以长时间占用但是也是能用的。具体请百度。 测试程序 Cen……