- 浏览: 222315 次
- 性别:
- 来自: 沈阳
最新评论
-
youjianbo_han_87:
直接在国际化配置里配置就可以,不用重写。
struts2 文件上传自定义信息提示 -
来利强:
很好啊,取 时、分 时好乱啊
oracle extract -
younglibin:
这些东西 在 那个jar中,那个文件能查的到?
struts2 下载配置contentType属性 -
uule:
木看懂!木看懂!
struts2 文件上传自定义信息提示 -
happyxing:
问题相同,我也纠结
oracle动态表名
文章列表
在目标元素之后添加元素
- 博客分类:
- JS
// DOM没有提供insertAfter()方法,所以我们只能自己写一个。
function insertAfter(newElement,targetElement) {
var parent = targetElement.parentNode;
if (parent.lastChild == targetElement) {
// 如果最后的节点是目标元素,则直接添加。因为默认是最后
parent.appendChild(newElement);
} else {
parent.i ...
<html><head><title>JS添加删除元素</title><script type="text/javascript"><!--function $(nodeId){return document.getElementById(nodeId);}function $Name(tagName){return document.getElementsByTagName(tagName);}function replaceMsg(){var newNode = document.createElement ...
<jsp:forward page="fengshan.jsp" />
<a href="fengshan.jsp">haha</a>
response.sendRedirect("fengshan.jsp");
this.getServletConfig().getServletContext() .getRequestDispatcher("/fengshan.jsp").forward(request, response); ...
http://www.blueidea.com/tech/web/2006/3408.asp
new java.net.URL("file:///c:/1.mid");
File f = new File(filepath); // sound fileURI uri = f.toURI();URL url = uri.toURL();AudioClip clip = Applet.newAudioClip(url);clip.play();
http://www.hackyuyi.cn/article/10228.html
运行Applet时出现了:不能读取AppletViewer的属性文件:C:\Documents and Settings\Administrator\.hotjava\properties使用默认值。
从当网上搜了一下,发现对于刚学习java applet的人来说,对于问题的解决说的有些模糊;
现在把我对问题的解决步骤总结下来:
1、进入安装jdk的目录"JAVA_HOME"\bin,执行policytool.exe
2、点击“添加规则项目”,进入规则项目页面
3、点击“添加 ...
Struts 1.3.8的TLD文件内置在struts-taglib-1.3.8.jar中,只需要在JSP页面中声明类似如下即可:
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %><%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %><%@ taglib uri="http://struts.apach ...
DELETE FROM BB_USER_PRODUCT_INFO_T a WHERE a.F_USER_ID = in_user_id AND EXISTS( SELECT a.f_item_id FROM bb_product_prechange_t c WHERE c.f_user_id = a.f_user_id AND c.f_item_id = a.f_item_id AND c.action = 1 ) AND f_begin_date > SYSDATE;
附件有简单封装的AJAX对象的引用以及请求服务器的方法
AJAX后台如何处理response流以供前端使用
int flg = ProductAcceptMaint.checkReference(sReference); response.reset(); java.io.PrintWriter out = response.getWriter(); response.setContentType("text/html;charset=GBK"); out.print(flg);
不能用out.write,而且注意在此之前response是否 ...
http://www.iteye.com/topic/30728
//校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串
function isRegisterUserName(s)
{
var patrn=/^[a-zA-Z]{1}([a-zA-Z0-9]|[._]){4,19}$/;
if (!patrn.exec(s)) return false
return true
}
http://hi.baidu.com/zhanghy0327/blog/item/1ff10cdf4b7f625e95ee37fa. ...
<logic:present name="list" scope="requset"><logic:iterate id="one" name="list"><bean:write name="one" property="属性名1"/><bean:write name="one" property="属性名2"/><bean:write name="one" pr ...