posts - 609,  comments - 13,  views - 64万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
05 2018 档案
css让内层div自动撑开外层div
摘要:.clear{clear:both;height:0px;font-size: 1px;line-height: 0px;} 就是在外层div的最后处,插入一个<div class="clear"></div>就可以了。 阅读全文
posted @ 2018-05-31 17:54 邢帅杰 阅读(992) 评论(0) 推荐(0) 编辑
StackExchange.Redis使用以及封装
摘要:来源:http://www.cnblogs.com/qtqq/p/5951201.html Redis安装:http://www.runoob.com/redis/redis-install.html Configuration:https://www.cnblogs.com/ArvinZhao/p 阅读全文
posted @ 2018-05-29 11:34 邢帅杰 阅读(2359) 评论(1) 推荐(1) 编辑
Memcached使用与纠错(附代码和相关dll)
摘要:今天没事研究一下,谁想到遇到了几个dll找不到,网上也不好找到,索性功夫不负有心人。贴出代码和相关的dll Memcached代码:(网上都是的,很多人都保存了这个代码) 测试代码:(很简单,随便写的) 主要是找到对应版本的dll不好找,网上很多代码,但几乎都没有附带资源 百度网盘:https:// 阅读全文
posted @ 2018-05-25 17:35 邢帅杰 阅读(181) 评论(0) 推荐(0) 编辑
python函数
摘要:1.语法:def 函数名(参数1,参数2,参数3,...): '''注释''' 函数体 return 返回值空函数: def 函数名(参数1,参数2,参数3,...): '''注释''' pass 例子: def BuySomething(pro_name:str)->str: ''' :pro_n 阅读全文
posted @ 2018-05-23 10:49 邢帅杰 阅读(110) 评论(0) 推荐(0) 编辑
python操作文件
摘要:这是什么是小红帽 行数据:这是什么 行数据:是小红帽 2.seek() 阅读全文
posted @ 2018-05-23 09:51 邢帅杰 阅读(114) 评论(0) 推荐(0) 编辑
python基础2
摘要:#strip 去除指定字符#name='*egon**'#print(name.strip('*'))#去除两端的*#print(name.lstrip('*'))#去除左端的*#print(name.rstrip('*'))#去除右端的*#lower,upper#print('ABC'.lower 阅读全文
posted @ 2018-05-21 17:56 邢帅杰 阅读(193) 评论(0) 推荐(0) 编辑
python基础1
摘要:安装环境:http://www.runoob.com/python/python-install.html#变量打印#name='jay'#sex='男'#age=20#level=10#print('名字:'+name+' 性别:'+sex+" 年龄:"+str(age)+" 级别:"+str(l 阅读全文
posted @ 2018-05-21 16:11 邢帅杰 阅读(154) 评论(0) 推荐(0) 编辑
python中的字符数字之间的转换函数
摘要:int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对象 x 转换为表达式字符串 阅读全文
posted @ 2018-05-21 14:21 邢帅杰 阅读(191) 评论(0) 推荐(0) 编辑
jwplayer使用方法
摘要:网盘:https://pan.baidu.com/s/1mmtppZSFOni5tLI2TJWKrw 阅读全文
posted @ 2018-05-17 13:02 邢帅杰 阅读(2140) 评论(0) 推荐(0) 编辑
响应式网站怎么搞?
摘要:1.在页面头部加入如下的声明: <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"> viewport = 视口(设备屏幕)conten 阅读全文
posted @ 2018-05-17 10:55 邢帅杰 阅读(193) 评论(0) 推荐(0) 编辑
微信公众号H5支付步骤
摘要:微信公众平台:https://mp.weixin.qq.com/ 进入 微信支付 管理》开通支付功能。 微信支付|商户平台: 设置安全目录:https://pay.weixin.qq.com/index.php/extend/pay_setting,意思是只有该目录下的页面才能够发起支付请求。 注意 阅读全文
posted @ 2018-05-14 09:52 邢帅杰 阅读(1084) 评论(0) 推荐(0) 编辑
bootstrap日历控件
摘要:bootstrap的日历控件: <link href="~/bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="~/css/bootstrap-datetimepicker.min.css" re 阅读全文
posted @ 2018-05-11 17:25 邢帅杰 阅读(581) 评论(0) 推荐(0) 编辑
解决video标签在微信中强制全屏、微信全屏播放(Android和IOS)
摘要:在video标签中加上代码: x5-playsinline="true" webkit-playsinline="true" playsinline="true" 找了很多,最终确定是微信x5浏览器的问题,一定要加 x5-playsinline="true" 这个属性。 微信浏览器中video全屏播 阅读全文
posted @ 2018-05-03 15:02 邢帅杰 阅读(491) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示