来源:php官方文档 Init script setup You will probably want to create an init script for your new php-fpm. Fortunately, PHP 5.3.3 provides one for you, which ...
分类:
Web程序 时间:
2018-09-04 13:43:26
阅读次数:
199
vagrant的学习 之 打包分发 一、打包Box: (1)关闭虚拟机。 (2)打包: 这样打包出来的文件叫package.box。 指定生成的包名字: 二、升级Box: 老用户,可以修改 Vagrantfile文件, 新用户,直接使用新的box文件。 修改vagrantfile,找到这段代码: 例 ...
分类:
其他好文 时间:
2018-09-03 16:25:47
阅读次数:
173
$(document).ready(function(){ $.extend({ show:function(){ } }); setInterval("show()",1000); }); fun... ...
分类:
Web程序 时间:
2018-09-03 13:34:10
阅读次数:
200
概述: 大家在工作中用jQuery的时候一定会在使用之前这样: 1 2 3 4 5 6 7 8 //document ready $(document).ready(function(){ ...code... }) //document ready 简写 $(function(){ ...code ...
分类:
Web程序 时间:
2018-09-01 16:26:49
阅读次数:
166
演示如下: wxml js hospitalData.js (模拟数据) 运行示例时,建议放在同一目录下. ...
分类:
微信 时间:
2018-08-31 12:33:17
阅读次数:
330
//禁止手机返回键 下面这段代码直接复制在index.html中,可以生效// $(document).ready(function() { if (window.history && window.history.pushState) { window.addEventListener('pops ...
分类:
移动开发 时间:
2018-08-30 16:54:00
阅读次数:
888
def token_type =context.expand ('${#Project#token_type}') def access_token = context.expand('${#Project#access_token}') def Authorization=token_type+"... ...
<template> <div class="echarts"> <IEcharts :option="pie" @ready="onReady" @click="onClick"></IEcharts> </div> </template> <script> import IEcharts fro ...
分类:
其他好文 时间:
2018-08-29 22:52:17
阅读次数:
1196
在F2界面下raid的相关配置1.开机按F2键,进入systemsetup界面2.选择界面里的第三个选项DeviceSettings3.选择第一个选项RaidControllerinSlotX:…,进入raid卡管理界面4.如果不清楚是否配置过阵列,进入第三个选项VirtualDiskManagement查看若未配置过raid,则VDmgmt页面如下图所示:若已经配置过raid,则会显示raid的
分类:
其他好文 时间:
2018-08-28 21:58:29
阅读次数:
3446
$(document).ready和window.onload的区别 $(document).ready和window.onload都是在都是在页面加载完执行的函数,大多数情况下差别不大,但也是有区别的。 $(document).ready:是DOM结构绘制完毕后就执行,不必等到加载完毕。 意思就是 ...