打印页面出错的原因
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<script language="javascript">
function getError()
{
try
{
x =new test; //产生错误。
}
catch(e)
{
document.write(e.description) //打印错误结果.
}
}
</script>
</head>
<body onLoad="getError()" >
</body>
</html>