<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js"></script>
<script>
$(document).ready(function(){
$('#Wish').keyup(function(){
var max = parseInt($(this).attr('maxlength'));
if($(this).val().length > max){
$(this).val($(this).val().substr(0, $(this).attr('maxlength')));
}
$('#WishMax').html('เหลืออีก ' + (max - $(this).val().length) + ' ตัวอักษร');
});
});
</script>
วิธีใช้งาน ด้านล่างนี้เลย
<textarea name="Wish" id="Wish" maxlength="10"></textarea>
<div id="WishMax"></div>
ไม่มีความคิดเห็น:
แสดงความคิดเห็น