随笔分类 -  JavaScript

摘要:本demo的功能:点击页面按钮在其边缘出现提示信息,点击页面任何一处则消失。 如下图: 1.所需插件: jquery插件; layer插件; 2.HTML内容: ==注意==: 1. class="j help tips"这个class是核心,不可缺少。 2. data tips属性是必须的。 3. 阅读全文
posted @ 2019-01-22 20:52 东窗凝残月 阅读(5905) 评论(0) 推荐(1)
摘要:1.orgchart插件: github地址:https://github.com/dabeng/OrgChart 2.前端代码: 3.效果图: 下图只是家谱图中的一部分,我这个家谱一次加载进一百三十多个节点,没有性能问题。 阅读全文
posted @ 2018-06-19 17:43 东窗凝残月 阅读(9163) 评论(3) 推荐(0)
摘要://获取字符串长度String.prototype.strLen = function() { var len = 0; for (var i = 0; i < this.length; i++) { if (this.charCodeAt(i) > 255 || this.charCodeAt(i 阅读全文
posted @ 2018-03-13 17:42 东窗凝残月 阅读(475) 评论(0) 推荐(0)