摘要: 1、也是最简单和最常用的办法,就是使用转向页面语句,分两种: a.使用服务器端的 Response.Redirect("YourPage"); b.使用客户端脚本 <script language=javascript>location.href='yourPage';</script> 这两种方法的缺点是如果要保留页面数据不太方便,如果不用保留可以采用。 2、操作完毕设置一个Session,进入页面时判断这个Session是否为null,如果不是a56爆大奖在线娱乐已经提交过了,但是缺点就是这个页面无法再提交了,必须在别的页面清空这个Session 阅读全文
posted @ 2012-03-20 15:02 AlanCoder 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 大家都知道清空上传控件“ <input type="file" />”用平常的value=“”无法实现清空 在这里给大家分享两种方法 //clone function clearFileInputByClone(fileId) { var cloneFile = $("#"+fileId).clone(); $("#"+fileId).replaceWith(cloneFile); } //html function clearFileInputByHtml(fileId) { var tempHTML = $(" 阅读全文
posted @ 2012-03-20 09:51 AlanCoder 阅读(783) 评论(0) 推荐(0) 编辑
View Code