摘要:
此处案例一个输入内容后即可清除不合法的内容<input name="showPageNum" type="text" id="showPageNum" onchange="this.value=this.value.replace(/[^(0-9)]/g,'');" onkeyup="this.value=this.value.replace(/[^(0-9)]/g,'');" size="2" maxlength="4&quo 阅读全文
摘要:
String number="^\\+?[1-9][0-9]*$"; //非零的正整数Pattern pu = Pattern.compile(number);Matcher mu =pu.matcher("1");System.out.println("验证非零的正整数:"+mu.matches());得到的结果是:true 阅读全文
摘要:
效果图:实现代码:<input type="button" class="handcursor" onclick='doLogin()' tabindex="5" style="background:url(<%=contextPath%>/img/eds.jpg); border-style:none; width:124px; height:35px; background-repeat:no-repeat;" /> 阅读全文
摘要:
1.在listView设置好背景之后 你如果点击空白出 你会发现背景有返回黑色的了,这是因为又调用了系统的背景因此你需要设置android:background="#FFFFFF"android:cacheColorHint="#FFFFFF"两者尽量一样2.如果想设置editVtext用代码限制字数TextView tv = new TextView(this);int maxLength = 10;InputFilter[] fArray = new InputFilter[1];fArray[0] = new InputFilter.LengthF 阅读全文
摘要:
package com.helong.test;import java.util.Scanner;public class Literals { public static void main(String[] args) { Scanner input = new Scanner(System.in); println("请选择您要操作项的编号:"); println("1.十进制转二进制\t\t\t2.二进制转十进制"); while (!input.hasNextInt()) { println("您输入的不是整型,请输入0-9的数字&q 阅读全文