`
文章列表
function checkCardId(socialNo){ if(socialNo == "") { alert("输入身份证号码不能为空!"); return (false); } if (socialNo.length != 15 && socialNo.length != 18) { alert("请输入有效证件号码!"); return (false); } var area={11:&q ...
http://www.iteye.com/topic/1132879
floor 返回不大于的最大整数 round 则是4舍5入的计算,入的时候是到大于它的整数(当-1.5时可见,四舍五入后得到的结果不是我们期待的,解决办法是先对他取绝对值,然后在用round方法) round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。 ceil 则是不小于他的最小整数 看例子: public class MyTest { public static void main(String[] args) ...

修改Hosts文件

修改Hosts文件 C:\WINDOWS\system32\drivers\etc
<result name="success" type="redirect"> http://www.baidu.com </result>
1、首先在js中编码 encodeURI($('#xm').val()) 2、在java后台解码 String xm=URLDecoder.decode(request.getParameter("xm"),"UTF-8"); 获取到的中文就不会出现乱码。
<a href="mailto:地址">邮件</a>
最近,在Eclipse中导入其他项目,总是报下面2个错误。将项目所需的jar都引入了。依然还存在这个问题。 1.The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project 2.The type java.lang.Object cannot be resolved. It is indirectly referenced from r ...
public static String httpRequest(String reqUrl, String reqMethod, String outStr) { URL url = null; String str = ""; InputStream in = null; OutputStream out = null; BufferedReader buff = null; InputStreamReader inr = null; HttpURLConnection httpConn = null; Stri ...
public static void main(String[] args) { Map<String, String> map = new HashMap<String, String>(); map.put("1", "11"); map.put("2", "22"); map.put("3", "33"); /** * 通过Map.entrySet使用iterator遍历key和value * ...
public static void main(String[] args) { String test="<a>2536</a>"; String test2 = StringEscapeUtils.escapeHtml(test); System.out.println(test2); } 输出: &lt;a&gt;2536&lt;/a&gt; public static void main(String[] args) { String test="&lt; ...
<title>Js评估用户输入的密码强度</title> <script language=javascript> //CharMode函数 //测试某个字符是属于哪一类. function CharMode(iN){ if (iN>=48 && iN <=57) //数字 return 1; if (iN>=65 && iN <=90) //大写字母 return 2; if (iN>=97 && iN <=122) //小写 ret ...

marquee的使用

    博客分类:
  • js
<marquee scrollamount="2" scrolldelay="2" onmouseover="this.stop()" onmouseout="this.start()" width="100%" height="21">Hello!!</marquee> 1.scrollamount="2" scrolldelay="2"代表滚动的速度 2.onmouseover onmouseou ...

MD5加密算法

/** * md5加密 * @param sourceStr * @param chartSet * @return */ public static synchronized String md5Digest(String sourceStr,String chartSet) { try { if (sourceStr == null) throw new NullPointerException("原字符串不能为NULL。"); MessageDigest ...
一直在找如何生成公钥私钥对,最后还是选择使用WinSCP工具可以直接生成公私钥对 打开WinSCP-PuttYgen-Generate-然后保存私钥公钥,搞定!
Global site tag (gtag.js) - Google Analytics