`
newUserForTest
  • 浏览: 8797 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
不知不觉写了两年的javascript(比较怀念写java的日子),用过jquery和mootools。关于这两个框架的对比也看过不少,之前一直也想说些什么,现在就不想这样做了,因为一定要说有区别的话那就是编码的样子不是很一样,mootools是扩 ...
从properties文件获取配置信息。 PropsUtil.java import java.io.IOException; import java.util.Properties; public class PropsUtil { /**一个property文件的内存对象*/ private static Properties pops = null; /** * <li>实例化一个Properties对象 */ static { pops = new Properties(); try { pops.load( ...
EncodingFilter.java import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpSe ...

div高度对齐

div高度对齐代码,让Div1跟Div2对齐。 <script type="text/javascript"> document.getElementById("Div2").style.height=document.getElementById("Div1").scrollHeight+"px" </script>
当Firefox外面的div不随着里面的div变化而变化时,在大框架里面加一句overflow:hidden;如: <style> .warp{margin:auto; width:800px; border:#000 solid 1px;overflow:hidden} .left_box{float:left; width:30%;height:600px; border-right:#ff0 dashed 1px;} .right_box{float:right;width:60%;height:600px;border-left:#f00 dashed 1px} ...
请求路径:http://localhost:8080/projectname/myservlet/somepath/test?someparam=somevalue request.getPathInfo(); //返回/somepath/test request.getRequestURL(); //返回http://localhost:7001/myservlet/somepath/test request.getRequestURI();//返回/myservlet/somepath/test request.getServletPa ...
用createElement创建button时,怎么赋予其onclick. <html> <body> <div id="xxx"></div> </body> </html> <SCRIPT LANGUAGE="JavaScript"> <!-- var delBtn = document.createElement('input'); delB ...
Global site tag (gtag.js) - Google Analytics