jQuery火箭图标返回顶部代码

01 2017 档案

摘要:IE不支持字符串的includes()方法;可以用indexOf()替换; includes()方法返回true和false; var str = "asdklmn"; if(str.includes()){ }可用if(str.indexOf("dkl")>=0){ ........ }替换; 阅读全文
posted @ 2017-01-19 20:39 小狮子001 阅读(1646) 评论(0) 推荐(0)
摘要:原文链接:http://www.cnblogs.com/xiaohuochai/p/5831640.html#undefined 滚动宽高 scrollHeight scrollHeight表示元素的总高度,包括由于溢出而无法展示在网页的不可见部分 scrollWidth scrollWidth表示 阅读全文
posted @ 2017-01-16 22:04 小狮子001 阅读(275) 评论(0) 推荐(0)
摘要:今天配置实体类注解时,出现以下错误: org.hibernate.MappingException: Could not determine type for: com.oneToOne.IdCard, at table: T_Students, for columns: 解决方案:注解要么写在字段 阅读全文
posted @ 2017-01-11 00:35 小狮子001 阅读(1329) 评论(1) 推荐(0)
摘要:1 执行 Git add somefile 的时候,出现 如下 错误: If no other git process is currently running, this probably means a git process crashed in this repository earlier 阅读全文
posted @ 2017-01-10 01:11 小狮子001 阅读(195) 评论(0) 推荐(0)
摘要:来自: http://www.cnblogs.com/specter45/p/github.html GitHub是基于git实现的代码托管。git是目前最好用的版本控制系统了,非常受欢迎,比之svn更好。 GitHub可以免费使用,并且快速稳定。即使是付费帐户,每个月不超过10美刀的费用也非常便宜 阅读全文
posted @ 2017-01-09 23:57 小狮子001 阅读(8425) 评论(1) 推荐(3)