
web前端
文章平均质量分 84
iteye_14031
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
设为首页,加入收藏
如何实现"设为首页","加入收藏"的功能 解决思路: 将指定URL设为首页的功能主要是依靠IE默认行为homePage的setHomePage方法,而将指定URL加入收藏夹的实现则是external对象的AddFavorite方法。 具体步骤: 设为首页: [html] view plaincopyprint?...原创 2015-03-03 21:36:34 · 327 阅读 · 0 评论 -
div布局
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>布局</title><style type="text/css"> body{ margin:0px;原创 2015-03-08 15:56:36 · 147 阅读 · 0 评论 -
纯javascript tab切换
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>菜单</title><style type="text/css"> *{ margin:0; paddin原创 2015-03-08 15:57:55 · 247 阅读 · 0 评论 -
被jsp中的路径困扰
最近使用SpringMVC,在前台页面跳转时总是存在路径跳转问题,所以直接写成了:<%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>...原创 2015-05-17 22:43:44 · 142 阅读 · 0 评论