|
|
|
ต้องการป้อนตัวเลขลงไปใน textbox ต้องการป้อนตัวเลขลงไปใน textbox แล้วกด submit แล้วให้มันแสดงค่าที่เราป้อนออกมาเป็นตัวหนังสือ |
|
|
|
|
|
|
|
กลับบ้านกันหมดไม่ใครมาตอบเท่าไหร่ เหอๆ
<script>
function checkword(txtinput) {
var word = new String(txtinput)
if(word!=""){
for(i=0;i<word.length;i++){
digit = word.charAt(i)
if(digit >="0" && digit <="9"){
word = word.replace(/1/g,"หนึ่ง ") ; word = word.replace(/2/g,"สอง ")
word = word.replace(/3/g,"สาม "); word = word.replace(/4/g,"สี่ ")
word = word.replace(/5/g,"ห้า ") ; word = word.replace(/6/g,"หก ")
word = word.replace(/7/g,"เจ็ด "); word = word.replace(/8/g,"แปด ")
word = word.replace(/9/g,"เก้า "); word = word.replace(/0/g,"ศูนย์ ")
document.write(word);
}
}
}
}
</script>
<form id="form1" name="form1" method="post">
<input name="txtinput" type="text" id="txtinput" />
<input type="button" name="Button" value="Click" onclick="checkword(document.all.txtinput.value)" />
</form>
ลองดูน่ะ ไม่รุ้ แบบนี้อะเปล่า เอิ้กๆๆ
|
|
|
|
|
Date :
10 เม.ย. 2551 23:40:38 |
By :
arsachi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|