js控制textarea輸入字串的個數,滑鼠按下抬起判斷輸入字元數,jstextarea
【Html代碼】
<table>
<tr>
<td width="150">簡訊內容:</td>
<td>
<textarea name="message" cols="96" rows="5" onKeyDown="textCounter(message,remLen,65);"
onKeyUp="textCounter(message,remLen,65);"></textarea>
<td>
</tr>
<tr><td></td>
<td>您還可以輸入:<input name="remLen" type="text" value="65" size="5" readonly="readonly">個字元,每條簡訊最大允許輸入<strong>65</strong>個字元</td>
</tr>
</table>
【對應的js代碼】
<script>
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit)
field.value = field.value.substring(0, maxlimit);
else
countfield.value = maxlimit - field.value.length;
}
</script>
js問題:字串中某個字元出現的個數的方法?
看看,這個是否符合你的要求
public class Test {
public static void main(String[] args) {
Test t=new Test();
String s="wohoeniohoaoohah";
String c="o";
int x=t.getNum(s, c);
System.out.println(x);
}
public int getNum(String s,String c){//s是原字串.c是我們要找個字串.當然,可以是一個字元
int x=s.indexOf(c); //判斷S中是否有C!如果x=-1,則表明沒有.
int sum=0; //出現的次數!
while(x!=-1){
sum++;
s=s.replaceFirst(c, "");//將C用""來代替.再次迴圈尋找下一個C
x=s.indexOf(c);
}
return sum;
}
}
用JS怎解決多行文本域字元限制功可以,要達到單行文字框限制字元的效果;輸滿規定字字元個數後不可以再出現
這樣:
<textarea oninput="s()" onpropertychange="s()"></textarea>
function s(){
var leng=要限制的字元數
if(this.value.lengtg>=leng){
//加一個限制,達到更強勁的效果
event.returnValue=false; //達到指定字數後,任何按鍵都失效。
//截取字串
this.value=this.value.substring(0,leng);
}
}
因為onpropertychange只在IE中有效,而oninput在大多數瀏覽器中都有效,所以兩個一起上。