摘要:
示例: $.fl.stringReplace('12345678', {start: 2, end: 2}) # 12****78 $.fl.stringReplace('12345678', {format: '-'}) # 12 78 stringReplace: function(str, o 阅读全文
摘要:
https://github.com/alibaba/f2etest 阅读全文
摘要:
.pro_li img,.pro_sm{display: inline-block; *display:inline;*zoom:1;vertical-align: middle ;} 解决方法:使用vertical-align: middle;使其基线对齐 阅读全文
摘要:
react-redux http://cn.redux.js.org/docs/faq/Reducers.html sage api文档 http://leonshi.com/redux-saga-in-chinese/docs/api/index.html 阅读全文
摘要:
http://www.ruanyifeng.com/blog/2012/12/asynchronous%EF%BC%BFjavascript.html Javascript异步编程的4种方法 http://www.html5online.com.cn/articles/2015051301.html 阅读全文
摘要:
WinForm下的app.config文件中添加: <system.net> <settings> <httpWebRequest useUnsafeHeaderParsing="true" /> </settings> </system.net> 允许系统容忍的(tolerant)以CR以或者LF 阅读全文
摘要:
using System; using System.Web; using System.Web.Security; namespace AuthTest { public class Authentication { /// <summary> /// 设置用户登陆成功凭据(Cookie存储) / 阅读全文
摘要:
一般情况下,在我们做访问权限管理的时候,会把用户的正确登录后的基本信息保存在Session中,以后用户每次请求页面或接口数据的时候,拿到 Session中存储的用户基本信息,查看比较他有没有登录和能否访问当前页面。 Session的原理,也就是在服务器端生成一个SessionID对应了存储的用户数据 阅读全文
摘要:
jquery 中$符号六大作用 2012-12-16 86市场网 javascript a.$用作选择器, var e = $("h1 a"); var f = $("table tr:nth-child(even)") b.$用作功能函数前缀 var str = ' Welcome to 86sh 阅读全文