<html> <head> <title>将数字金额进行千位分隔</title> </title> </head> <body> <label> 将数字金额进行千位分隔: <input type="text" name="num" value="88888888.88" /> </label> <label> <input type="button" name="button" value="转换" onclick="formatNum(document.all.num);document.all.button.disabled='true';" /> </label> </body> </html>