|
|
|
อยากได้ตัวอย่างโค๊ด เช่น ถ้ากรอกข้อมูลแล้วไม่ใช่ตัวเลยมันจะลบทันที ด้วย jQuery ครับ |
|
|
|
|
|
|
|
regular expression ก็ใช้ได้นะค่ะ
|
|
|
|
|
Date :
2012-12-26 11:02:16 |
By :
LuckyStar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#textfield').live('keyup', function(e) {
$(this).val($(this).val().replace(/[^0-9+-]/i, ''));
});
});
</script>
</head>
<body>
<label for="textfield"></label>
<input type="text" name="textfield" id="textfield" />
</body>
</html>
Go to : java ที่สามารถกรอกได้เฉพาะตัวเลขและเครื่องหมาย + และ - เท่านั้น ทำยังไงครับ
|
|
|
|
|
Date :
2012-12-26 12:01:09 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|