摘要: http://www.cnblogs.com/polk6/archive/2013/07/26/3214847.htmlhttp://blog.sina.com.cn/s/blog_4bcf4a5e010008o0.html 这篇文章写的也很详细如果遇到问题可以粘贴这段代码,然后进行演示一下,看看到... 阅读全文
posted @ 2015-12-25 09:02 Mr.He多多指教 阅读(230) 评论(0) 推荐(0) 编辑
摘要: http://www.nowamagic.net/librarys/veda/detail/1579昨天收到一封来自深圳的一位前端童鞋的邮件,邮件内容如下(很抱歉,未经过他的允许,公开邮件内容,不过我相信其他人肯定也有同样的问题,所以,直接把问题原文抛出来):“读了你的几篇关于JS(变量对象、作用域... 阅读全文
posted @ 2015-12-24 09:26 Mr.He多多指教 阅读(5007) 评论(0) 推荐(3) 编辑
摘要: 使用str.isdigit();有两种使用方法 str.isdigit('12345') >True str.isdigit('aaaaa') >False 或者 '12345'.isdigit() >True 'aaaaa'.isdigit() >False 注意 1.使用的是str,而不是str 阅读全文
posted @ 2015-12-23 15:42 Mr.He多多指教 阅读(3180) 评论(0) 推荐(1) 编辑
摘要: python中有很多字符串连接方式,今天在写代码,顺便总结一下:最原始的字符串连接方式:str1 + str2 python 新字符串连接语法:str1, str2 奇怪的字符串方式:str1 str2 % 连接字符串:‘name:%s; sex: ' % ('tom', 'male') 字符串列表... 阅读全文
posted @ 2015-12-22 16:03 Mr.He多多指教 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 下载redis的Linux版本,使用WinSCP移动到linux中 在linux中解压 tar zxvf redis-1.2.6.tar.gz 到任意目录 例如/usr/local/redis-1.2.6 cd redis-1.2.6 make src/redis-server /home/redi 阅读全文
posted @ 2015-12-20 23:39 Mr.He多多指教 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 参考博文:http://www.2cto.com/kf/201401/273825.html http://www.jb51.net/article/44123.htmhttp://zhidao.baidu.com/link?url=BNhBPvi-DaTqZCxQ0CfNsBxNS_mWCA... 阅读全文
posted @ 2015-12-18 16:28 Mr.He多多指教 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 转自http://www.cnblogs.com/nicholas_f/archive/2009/03/27/1423207.html <html>< head>< title>display:none和visible:hidden的区别</title>< /head>< body >< span 阅读全文
posted @ 2015-12-17 18:43 Mr.He多多指教 阅读(373) 评论(0) 推荐(0) 编辑
摘要: opacity:CSS3中的属性,调节透明度,一般取值0.5 ie9+ 支持,ie8及以前不支持 filter:alpha(opacity=50) 支持ie8及以前 阅读全文
posted @ 2015-12-17 17:40 Mr.He多多指教 阅读(204) 评论(0) 推荐(0) 编辑
摘要: opacity:CSS3中的属性,调节透明度,一般取值0.5 添加思想: 1.对超链接添加点击事件,通过new {@onclick="showLoading()"} Html.ActionLink("新建产品",“Create","ProductManage", new{productLineID 阅读全文
posted @ 2015-12-17 17:08 Mr.He多多指教 阅读(9760) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/polk6/p/5045277.html 阅读全文
posted @ 2015-12-17 10:07 Mr.He多多指教 阅读(241) 评论(0) 推荐(0) 编辑