摘要:
/*** 用作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 阅读全文
摘要:
<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. 阅读全文