C语言 c++ php mysql nginx linux lnmp lamp lanmp memcache redis 面试 笔记 ppt 设计模式 问题 远程连接

  2013年5月29日
摘要: /*** 用作cookie 代理相关的函数操作,* 需要 Ffunction.js 否则需要将 cookie 部分copy出来*///cookie代理iframfunction FCookieFrame(idPrefix,src,fun){ this._cf = document.createElement("iframe"); this._cf.id = idPrefix+"_cookie_frame"; this._cf.name = idPrefix+"_cookie_frame"; this._cf.style.display 阅读全文
posted @ 2013-05-29 01:38 思齐_ 阅读(796) 评论(0) 推荐(0) 编辑
摘要: <script>(function(){ alert(1); })()(function(){ alert(1); })()</script>上面的代码会提示这样的错误解决方法:<script>(function(){ alert(1); })();//增加一个分号(function(){ alert(1); })()</script>参考:https://github.com/filamentgroup/quickconcat/issues/11 https://github.com/imakewebthings/jquery-waypoin. 阅读全文
posted @ 2013-05-29 01:28 思齐_ 阅读(972) 评论(0) 推荐(0) 编辑