`
文章列表
// DOM没有提供insertAfter()方法,所以我们只能自己写一个。    function insertAfter(newElement,targetElement) {      var parent = targetElement.parentNode;      if (parent.lastChild == targetElement) {    // 如果最后的节点是目标元素,则直接添加。因为默认是最后      parent.appendChild(newElement);      } else {      parent.i ...

动态添加元素

    博客分类:
  • JS
<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 ...
<%@page isELIgnored="false"%> 
<jsp:forward page="fengshan.jsp" />   <a href="fengshan.jsp">haha</a>   response.sendRedirect("fengshan.jsp");   this.getServletConfig().getServletContext()             .getRequestDispatcher("/fengshan.jsp").forward(request, response); ...

iframe

    博客分类:
  • HTML
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、点击“添加 ...

查询优化

http://lirig.iteye.com/blog/265250
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 exist

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

    博客分类:
  • JS
附件有简单封装的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. ...

String大小写转换

    博客分类:
  • JAVA
String s = "test";   s.toUpperCase();

STRUTS1迭代标签

<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 ...
Global site tag (gtag.js) - Google Analytics