摘要:
更改Apache的php.ini的配置 In my php.ini (created custom ini file in public_html) would this solve this problem, how much would I have to set it to around 1G 阅读全文
摘要:
//导出表格public function get_exel($fileName,$headArr,$list){//导入PHPExcel类库,因为PHPExcel没有用命名空间,只能import导入import("Org.Util.PHPExcel");import("Org.Util.PHPExcel.Writer.Excel5");import("Org.Util.PHPExcel.IOFa... 阅读全文
摘要:
HTML DOM 加载步骤 1、 解析 HTML 结构 2、加载外部脚本和样式表文件 3、解析并执行脚本代码 4、构造 HTML DOM 模型 5、加载图片等外部文件 6、页面加载 一、总体架构 1.1:jQuery 的核心特征: 兼容主流浏览器:支持 IE 6.0+、Chrome、Firefox 阅读全文
摘要:
//加载顺序问题,不可改变位置 var scrollFunc = function(e){ e = e || window.event; if (e.wheelDelta) { if (e.wheelDelta > 0) { scrollUp(); } if (e.wheelDelta < 0) { 阅读全文