文章列表
http://topic.csdn.net/u/20081122/15/69401520-9631-4b78-be16-0436cef73110.html
<script>
$().ready(function() {
var validator=$("#searchBillingForm").validate({
rules: {
'searchBillingForm.billingId':{
regexMatch:RuleLib.Integer
},
'searchBillingForm.userId':{
regexMatch:RuleLib.Integer
},
'searchBillingForm.goodsId':{
regexMatch:Ru ...
<result-types>
<result-type name="json" class="org.apache.struts2.json.JSONResult"/>
</result-types>
<action name="queryColumnList" method="queryColumnList" class="columnAction">
...
jQuery.validator.addMethod("regexMatch", function(value, element, param) {
value =$.trim(value);
element.value = value;
var regExp = new RegExp( param );
return this.optional(element) || regExp.test(value);
});
package com.tranzda.appstore.common;
import java.io.*;
import java.lang.reflect.*;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.text.SimpleDateFormat;
import javax.swing.JOptionPane;
import org.apache.poi.hssf.usermodel.*;
import org.apache.poi.hssf ...
<table>
<tr>
<td id="billing_${billingId}" onmouseover="try{EditorMgr.toggleEditBtn(this,true);}catch(e){}" onmouseout="try{EditorMgr.toggleEditBtn(this,false);}catch(e){>
<span class="normalBox">
<s ...