|
|
|
ขอ Code ดักการพิมช่องว่างและสัญลักษณะพิเศษของ JavaScript + Ajax หน่อยครับ |
|
|
|
|
|
|
|
ใครทำเป็นช่วยหน่อยครับ เดือนร้อนจริงๆ
|
|
|
|
|
Date :
2015-03-13 22:22:20 |
By :
testonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูพวก function ของ escape() , encodeURI() ,
|
|
|
|
|
Date :
2015-03-14 07:11:53 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รับการป้อนแค่ a-Z และ 0-9 รวมทั้งหมดไม่เกินสิบตัวอักษรครับ
<input type='text' class='chardigit' />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".chardigit").keyup(function () {
var current = $(this);
var onlyCharAndDigit= /^[0-9A-Za-z\$]{0,10}$/;
if (onlyCharAndDigit.test(current.val())) {
return true;
}else{
current.val('');
return false;
}
});
});
|
|
|
|
|
Date :
2015-03-14 07:27:43 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|