2014年3月30日

使用Javascript获取当前目录的绝对路径

摘要: 转自http://heeroluo.net/Article/Detail/101一谈到路径相关的问题,大家都会往window.location上想,确实这个对象提供了相当多的路径信息,其中常用的就包括:location.href:当前页面的完整URLlocation.pathname:当前URL中的路径名location.hash:当前URL中的锚点location.search:当前URL中的查询参数然而,location没有一个属性能直接获得当前目录(不含文件名)的绝对路径。通过Google我发现了一些错误的方法,比如说把URL通过“/”分离成数组,把数组的最后一项去掉以后再连接成字符串。 阅读全文

posted @ 2014-03-30 10:52 icelin 阅读(4251) 评论(1) 推荐(1) 编辑

CKEdit( htm编辑器)

摘要: http://ckeditor.com/ (强大的在线编辑器) 阅读全文

posted @ 2014-03-30 10:45 icelin 阅读(166) 评论(0) 推荐(0) 编辑

使用canvas绘制时钟 (http://heeroluo.net/Article/Detail/95)

摘要: 准备工作在HTML中指定一个区域放置时钟:时钟的一些外观设定:var width = 260; // 桌布宽度var height= 260; // 桌布高度var dot = {x : width / 2,y : height / 2,radius : 6}; // 圆点位置、半径var radius = 120; // 圆半径var borderWidth = 6; // 圆边框宽度创建元素:var clock = document.getElementById('clock');var clockBg = document.createElement('canva 阅读全文

posted @ 2014-03-30 10:17 icelin 阅读(335) 评论(0) 推荐(0) 编辑

导航