摘要: http://kb.cnblogs.com/page/129756/ 阅读全文
posted @ 2012-07-28 15:10 lcuzhanglei 阅读(116) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/rush/archive/2012/04/22/2465683.html 阅读全文
posted @ 2012-07-28 14:07 lcuzhanglei 阅读(98) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/damonlan/archive/2012/04/23/2465569.html 阅读全文
posted @ 2012-07-28 14:06 lcuzhanglei 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 下载事件 //下载按钮事件 protected void lkb_downLoad_Click(object sender, EventArgs e) { //获取在隐藏控件的物理路径 string fullPath = hf_upPath.Value; //获取包含在路径中的文件名 string fileName = fullPath.Substring(fullPath.LastIndexOf('\\')+1); str... 阅读全文
posted @ 2012-07-28 13:42 lcuzhanglei 阅读(309) 评论(0) 推荐(0) 编辑
摘要: <div class="width" id="focus"> <ul style="left: 0px; width: 1000px;"> <li><a target="_blank" href="http://www.fyxt.cn/html/News/redianchunxiao/20120723/157.html"> <img border="0" src="http://www.fyxt.cn/uploa 阅读全文
posted @ 2012-07-27 14:08 lcuzhanglei 阅读(308) 评论(0) 推荐(0) 编辑
摘要: $(".active :hidden")带空格的选择器,表示后代选择器,选择带有样式active内的所有隐藏的子对象。$(".active:hidden")不带空格的选择器,表示筛选,选择带有样式active并且隐藏的对象。 阅读全文
posted @ 2012-07-27 14:01 lcuzhanglei 阅读(248) 评论(0) 推荐(0) 编辑
摘要: todayDate = new Date(); date = todayDate.getDate(); month= todayDate.getMonth() +1; year= todayDate.getYear(); document.write(""); if(navigator.appName == "Netscape") { document.write(1900+year); document.write("年"); document.write(month); document.write("月"); 阅读全文
posted @ 2012-07-27 13:56 lcuzhanglei 阅读(208) 评论(0) 推荐(0) 编辑
摘要: http://wenku.baidu.com/view/8cdf2d3367ec102de2bd898c.html 阅读全文
posted @ 2012-07-27 13:44 lcuzhanglei 阅读(141) 评论(0) 推荐(0) 编辑
摘要: <script> //删除cookie function delCookie(name){//为了删除指定名称的cookie,可以将其过期时间设定为一个过去的时间 var date = new Date(); date.setTime(date.getTime() - 10000); document.cookie = name + "=a; expires=" + date.toGMTString(); } //获取coookie... 阅读全文
posted @ 2012-07-27 10:54 lcuzhanglei 阅读(204) 评论(0) 推荐(0) 编辑
摘要: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + requ 阅读全文
posted @ 2012-07-27 10:26 lcuzhanglei 阅读(737) 评论(0) 推荐(0) 编辑