<html> <head> <script type="text/javascript" language="javascript"> <!-- function test() { try { throw new Error("エラー"); alert("test"); } catch(e) { alert(e.message); //e.descriptionとしても大差ない。 } } //--> </script> </head> <body onload ="test();"> </body> </html>