`
文章列表
function encodeURL(sStr) { return escape(sStr).replace(/\+/g, '%2B').replace(/\"/g,'%22').replace(/\'/g, '%27').replace(/\//g,'%2F'); }    使用上面的函数将传入后台的字符进行编码后台再通过解码方式解码就可以或许到“+”等特殊字符了 /** * @description对UTF-8 的字符串进行解码 * @return String */ public static String unEscape(Str ...
RegExp对象实现,书写规则: var xxx=new RegExp("匹配字符串"[,"附加条件"]); 字面量实现: var xxx=/匹配字符串/[附加条件] 上面附加条件可以省略,附加条件有如下3个: i:忽略大小写 g:全文查找 ...
package com.expressionedit.test; import java.io.*; public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislat ...
javascript操作select参考 代码 1.判断select选项中 是否存在Value="paraValue"Item function jsSelectIsExitItem(objSelect, objItemValue) { var isExit = false; for (var i = 0; i < objSelect.options.length; i) { (objSelect.options[i].value objItemValue) { isExit = true; ; } } isExit; } 2.向select选 ...
我减压的JBOSS的server.xml路径为: D:\Program Files\jboss-4.2.2.GA\server\default\deploy\jboss-web.deployer\server.xml 在<Host name="localhost" autoDeploy="false" deployOnStartup="false" deployXML="false"> 后面加上应用程序的Context,path=IE地址栏中的应用名,如果path="/" ...
Global site tag (gtag.js) - Google Analytics