1,HTML source code£º <html> <head> <title>How to use NumberFormatException</title> </head> <body> <script src="jsjava.js"></script> <script> try{ var d=Double.parseDouble("99r"); document.write(d+"<br>"); }catch(e){ document.write(e.message+"<br>"); } </script> </body> </html> 2,The display text is:

not a valid argument!