|
|
|
รบกวนสอบถามการใช้ Javascript กับ PHP เกี่ยวกับการ Alert ในฟังก์ชั่นหน่อยครับ |
|
|
|
|
|
|
|
Code (JavaScript)
<SCRIPT>
function num_key(evt){
var iKeyCode;
if(window.event){ // IE
iKeyCode = evt.keyCode
}
else if(evt.which){ // Netscape/Firefox/Opera
iKeyCode = evt.which
}
if ((iKeyCode >= 48 && iKeyCode <= 57) || iKeyCode == 8 || iKeyCode == 46){ // 8 Backapace , 46 Delete
return true;
}
else{
return false;
}
}
</SCRIPT>
<input type = text id="text1" name = speed value = <?php echo $DBSpeed?> onkeypress="return num_key(event);">
|
|
|
|
|
Date :
2013-05-02 15:46:26 |
By :
thep |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|