`
文章列表

ant学习

    博客分类:
  • ant
<!--编译路径--> <path id="common.classpath">  <fileset dir="${environment.JAVA_HOME}" includes="**/*.jar" />  <fileset dir="${dest.dir}/xx/WEB-INF/lib" includes="**/*.jar" />  <fileset dir="${TOMCAT_HOME}/lib" include ...
<html> <script type="text/javascript">/**var n1 = 1.7976931348623157E+309;alert(n1);  //Infinity alert(typeof(NaN)); //   number  alert(typeof(Infinity));   //number    alert(typeof(null));    //object  alert(typeof(undefined));    //undefined  alert(NaN==NaN);    //false  alert ...
eclipse 中main中路径问题 读取的是当前工程路径 File file = new File("."); file.getAbsolutePath();  //得到当前绝对路径  d:/workspace/.
ThreadLocal 的线程安全性稍差的堂兄弟,InheritableThreadLocal ThreadLocal 类有一个亲戚,InheritableThreadLocal,它以相似的方式工作,但适用于种类完全不同的应用程序。创建一个线程时如果保存了所有 InheritableThreadLocal 对象的值,那么这些值也将自动传递给子线程。如果一个子线程调用 InheritableThreadLocal 的 get() ,那么它将与它的父线程看到同一个对象。为保护线程安全性,您应该只对不可变对象(一旦创建,其状态就永远不会被改变的对象)使用 InheritableThreadLocal ...
<%@ page isELIgnored="false" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html> <head>  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  <script type="text/javascript" src="WdatePick ...

光标位置函数

    博客分类:
  • css
/** * 获取光标位置函数 * @param ctrl 可以为input(text)或textarea * @return 光标位置 */function getCursortPosition (ctrl) { var CaretPos = 0;  if (document.selection) // IE Support {  ctrl.focus();  var Sel = document.selection.createRange();  Sel.moveStart ('character', -ctrl.value.length);  CaretPos = Sel.text.leng ...
------------------------基于DIV---------------------------------------- div {  text-overflow: ellipsis;  overflow:hidden; }   ------------------------基于TABLE----------------------------------------   <table border="1" style="table-layout: fixed;"> <tr>  <td style ...
select t.id,t.age,t.name from user t where upper(t.name) like '%' || upper('liqi') || '%'; 
登陆界面
JavaScript is the world's most misunderstood programming language. Some believe that it lacks the property of information hiding because objects cannot have private instance variables and methods. But this is a misunderstanding. JavaScript objects can have private members. Here's how. Objects JavaS ...
写在前面的话: 试图翻译自 http://jibbering.com/faq/faq_notes/closures.html 文中大量提到《ECMA 262 》,我也没时间读这东西,可能有问题理解有误。希望纠正。 只译了前边部分,我得理解几天再继续下去。 英文水平差,凑合看吧。 国内找了半天没这篇文章中文版,献丑了就。 读后有种豁然开朗的感觉,清楚了很多javascript的问题。 一、Introduction Closure (闭包) A "closure" is an expression (typically a function) that can have free ...

js拖拽

<style> .dragArea{ background-color:blue; filter:alpha(opacity=50); -moz-opacity:0.5; } body{ margin:0px; } </style> <body> <div style="top:0px;left:0px;width:100px;height:100px;position:absolute;background:black;" onselectstart="return false;" ...
Global site tag (gtag.js) - Google Analytics