摘要:
1:目录列表 2:文件列表 阅读全文
摘要:
压缩过的js类似 阅读全文
摘要:
压缩字符串: base64_encode(gzcompress(serialize($data))) 解压字符串: unserialize(gzuncompress(base64_decode($search_cache['data']))); 判断是否是base64: function is_ba 阅读全文
摘要:
阅读全文
摘要:
a标签对于一下两种方式是无效的: <a href="http://qq.com">QQ</a> $('.obj').click(); $('.obj').trigger('click); 有效方式是: $('.obj')[0].click(); 阅读全文
摘要:
最简单的方式: json_decode($res,true); 结果都是: 阅读全文
摘要:
function requestByCurl($remote_server,$post_string,$use_post=true){ if(function_exists('curl_init')){ $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$ 阅读全文
摘要:
@media (max-width: @screen-xs-max) { ... } @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { ... } @media (min-width: @screen-md-mi 阅读全文
摘要:
这个方式比较简单,样式和js也有效果,还有object和iframe方式 效果图,可以看出公共的样式对于引入的文件也有效果,在加载完文件后js也是有效果的 index.html header.html content.html footer.html 阅读全文
摘要:
原文地址:https://www.runoob.com/html/html5-app-cache.html 我的理解就是离线网页,没网的时候显示缓存的页面。 推荐使用场景:通告/公示/说明/文章等几乎长期页面变化不大或没有动态数据变化的情况。 什么是应用程序缓存(Application Cache) 阅读全文