|
|
|
สอบถามเกี่ยวกับการพิมพ์อักษรแล้วให้ จำนวนตัวเลขลดลงตามการพิมพ์ |
|
|
|
|
|
|
|
Code (HTML)
<textarea name="description" id="description" rows="5" placeholder="ระบุข้อความ ไม่เกิน 1000 ตัวอักษร" class="span5"></textarea>
<span class="countdown" style="color:#808080; font-size:12px; font-weight:bold;"></span>
<script src="//code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
function chk_strlen(txt_limit,txt_id,txt_display){
var limitlen = txt_limit;
$(txt_id).keyup(function(){
var strlen = $(this).val().length;
var theRest = limitlen - strlen;
if(strlen > limitlen){
var cutout = $(this).val().substr(0,limitlen);
$(this).val(cutout);
}
$(txt_display).empty().html('จำกัดข้อความ '+theRest);
});
$(txt_display).empty().html('จำกัดข้อความ '+limitlen);
}
$(function(){
chk_strlen(1000,"#description",".countdown");
});
</script>
|
ประวัติการแก้ไข 2014-12-11 17:05:35
|
|
|
|
Date :
2014-12-11 16:59:06 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ คุณSiamHTTP ทีช่วยเหลือครับ ^__^
|
|
|
|
|
Date :
2014-12-12 07:50:50 |
By :
udorn555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|