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