上一页 1 ··· 11 12 13 14 15
摘要: ```js /** * 如果data是整型字符串,则转为整型,否则原样返回 * @param {*} data 整型字符串 */ export const stringToInt = (data) => { if (/^\d+$/.test(data)) { return parseInt(data, 10); } return data; } ``` 阅读全文
posted @ 2018-12-19 00:47 jser_dimple 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 明日复明日,明日何其多!我生待明日,万事成蹉跎!ruby挺可爱的。没有进入工程项目中使用sass。 尝试是一件快乐的事情。在页面中直接引进编译出来的css即可。 阅读全文
posted @ 2017-12-27 10:05 jser_dimple 阅读(219) 评论(0) 推荐(0) 编辑
摘要: rel="stylesheet"不加,页面没有效果,呵呵。 阅读全文
posted @ 2017-12-16 16:37 jser_dimple 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 官网上面 https://github.com/overtrue/share.js非常详细的介绍了share.js他的使用 使用方式有:第一:使用 npm npm install social share.js 第二:可以在github下载demo查看 第三:直接使用源:https://cdnjs. 阅读全文
posted @ 2017-12-14 17:34 jser_dimple 阅读(1381) 评论(0) 推荐(1) 编辑
上一页 1 ··· 11 12 13 14 15
/*function gotourl() { var url = "https://www.cnblogs.com/smart-girl/"; var localurl = document.url; if( localurl.substring(0,url.length) != url ) { location.href=url; } } gotourl();*/