This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const overlayGroupTags = []; | |
for (var i = 0; i <= (0x00ee0000); i += (0x00020000)) { | |
overlayGroupTags.push((0x60000000 + i)); | |
} | |
imageRendered(e) { | |
const eventData = e.detail; | |
if (eventData && eventData.image && eventData.image.$presentationStateDataSet) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Amount2RMB.java 2008-6-15 | |
*/ | |
package test; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
public class Amount2RMB { | |
private static final Pattern AMOUNT_PATTERN = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery.extend(jQuery.validator.messages, { | |
required:"请输入此项", | |
remote:"请修正该字段", | |
email:"请输入正确格式的电子邮件", | |
url:"请输入合法的网址", | |
date:"请输入合法的日期", | |
dateISO:"请输入合法的日期 (ISO).", | |
number:"请输入合法的数字", | |
digits:"只能输入整数", | |
creditcard:"请输入合法的信用卡号", |