-1
我正在創建一個短信發件人。我有一個文本框。現在我正在使用jQuery Keyup事件計數文本長度。jQuery Keyup Count TextLength for SMS
<form>
<div class="form-group">
<label for="sms">SMS</label>
<textarea rows="5" class="form-control" id="sms" name="sms"></textarea>
<span class="pull-right" id="smslength">0</span>
</div>
<button type="submit" class="btn btn-default">SMS Gönder</button>
</form>
<script type="text/javascript">
$('#sms').keyup(function(){
sms = $(this).val();
$('#smslength').html(sms.length);
})
</script>
但對於特殊字符的短信計數2(如S,S,G,G,C,I,I)
我希望當我輸入上面的字符數爲兩個字符。有多個字節的jQuery的函數嗎?
in here($ .inArray(e.charCode,codes)codes are correct or it should car? –
應該是汽車或你給你的代碼陣列(對不起的錯字) –