摘要: 1,创建数据库的时候记得选择中文的 2,更新中文的时候记得加上N 阅读全文
posted @ 2016-11-22 17:46 晓明的哥哥 阅读(918) 评论(0) 推荐(0)
摘要: DECLARE @str AS VARCHAR(25)='123_234_567' select substring(@str,1,LEN(@str)-CHARINDEX('_',reverse(@str))) 输出 123_234 DECLARE @str AS VARCHAR(25)='123_ 阅读全文
posted @ 2016-11-22 16:14 晓明的哥哥 阅读(4958) 评论(0) 推荐(1)
摘要: 利用ng-app可以完成自动加载,如果不利用ng-app。那么使用bootstrarp实现手动加载模块 阅读全文
posted @ 2016-11-22 15:31 晓明的哥哥 阅读(540) 评论(0) 推荐(1)
摘要: alert(Math.ceil(25.9)); //26 alert(Math.ceil(25.5)); //26 alert(Math.ceil(25.1)); //26 alert(Math.round(25.9)); //26 alert(Math.round(25.5)); //26 alert(Math.round(25.1)); //25 alert(Math.floor(25.9)... 阅读全文
posted @ 2016-11-22 15:27 晓明的哥哥 阅读(372) 评论(0) 推荐(1)