|
|
|
ขอคำปรึกษาเรื่องตัวเลขใน textfield นิดนึงครับ (รายละเอียดด้านใน) |
|
|
|
|
|
|
|
เอาโค้ดมาลงด้วยครับ จะได้มีคนช่วยแก้
|
|
|
|
|
Date :
2013-01-17 10:36:10 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันจะประมาณนี้ครับ ผม ก๊อบๆ เขามาอีกที แต่หาแนวไม่ถูกว่าแก้ยังไงดีครับ
Code (PHP)
<!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 language="JavaScript">
function addCommas(nStr)
{
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
function chkNum(ele)
{
var num = parseFloat(ele.value);
ele.value = addCommas(num.toFixed(2));
}
</script>
</head>
<body>
<form name="frmMain" action="" method="post">
<input type="text" name="txtNumber" value="" OnChange="JavaScript:chkNum(this)">
</form>
</body>
</html>
|
ประวัติการแก้ไข 2013-01-17 13:07:00 2013-01-17 13:08:09
|
|
|
|
Date :
2013-01-17 13:06:12 |
By :
pantatonic |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|