上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 34 下一页
摘要: Onunload,onbeforeunload都是在刷新或关闭时调用,可以在<script>脚本中通过 window.onunload来指定或者在<body>里指定。区别在于onbeforeunload在onunload之前执行,它还可 以阻止onunload的执行。 Onbeforeunload也 阅读全文
posted @ 2017-08-17 09:55 ConfidentLiu 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 前端使用uploadify的flash上传控件,后端使用spring MVC,使用IE上传时报406,用Chrome没有问题。 检查发现IE上传时的请求头中,Accept: text/* 而Chrome的请求头中,Accept: */* 后端返回@ResponseBody MyClass,使用Jac 阅读全文
posted @ 2017-08-16 20:02 ConfidentLiu 阅读(226) 评论(0) 推荐(0) 编辑
摘要: jQuery.extend 函数使用详解 JQuery的extend扩展方法: Jquery的扩展方法extend是我们在写插件的过程中常用的方法,该方法有一些重载原型,在此,我们一起去了解了解。 一、Jquery的扩展方法原型是: extend(dest,src1,src2,src3...); 它 阅读全文
posted @ 2017-08-14 20:31 ConfidentLiu 阅读(165) 评论(0) 推荐(0) 编辑
摘要: SVN插件配置到MyEclipse中的步骤 听语音 | 浏览:20471 | 更新:2015-01-09 10:26 | 标签:myeclipse SVN插件配置到MyEclipse中的步骤 听语音 | 浏览:20471 | 更新:2015-01-09 10:26 | 标签:myeclipse 1 阅读全文
posted @ 2017-08-14 12:59 ConfidentLiu 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 推荐看此路径下文档 http://www.lhgdialog.com/api/ http://www.360doc.com/content/14/0715/11/1039473_394525500.shtml http://www.lhgdialog.com/api/ 、、、、、、、、、、、、、、、 阅读全文
posted @ 2017-08-10 16:59 ConfidentLiu 阅读(319) 评论(0) 推荐(0) 编辑
摘要: http://www.360doc.com/content/13/0306/15/10504424_269673496.shtml 阅读全文
posted @ 2017-08-10 16:58 ConfidentLiu 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 在iframe子页面获取父页面元素 代码如下:$('#objId', parent.document);// 搞定...在父页面 获取iframe子页面的元素代码如下:$("#objid",document.frames('iframename').document) $(document.getE 阅读全文
posted @ 2017-08-10 10:27 ConfidentLiu 阅读(661) 评论(0) 推荐(0) 编辑
摘要: [html] view plain copy <span style="white-space:pre"> </span>//document ready $(document).ready(function(){ ...code... }) //document ready 简写 $(functi 阅读全文
posted @ 2017-08-09 20:59 ConfidentLiu 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 在jsp和class文件中调用的相对路径不同。 在jsp里,根目录是WebRoot 在class文件中,根目录是WebRoot/WEB-INF/classes 当然你也可以用System.getProperty("user.dir")获取你工程的绝对路径。 另:在Jsp,Servlet,Java中详 阅读全文
posted @ 2017-08-09 09:56 ConfidentLiu 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 第一种方法:直接按钮中加入 当点击提交后,提交按钮变灰色不可用,这样可有效防止重复提交,本代码就是实现这样一个功能。从代码就可以看出,我们只需在提交按钮上加入这一句: onclick="javascript:{this.disabled=true;document.form1.submit();}" 阅读全文
posted @ 2017-08-07 15:06 ConfidentLiu 阅读(4737) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 34 下一页