不好意思打扰了
小白一只 可以帮我看下哪里出错了吗?
<!DOCTYPE html PUBLIC>
<html>
<head>
<title>第一章
</title>
<script>
jscript=function(){}
jscript.ui=function(){}
jscript.ui.alerts=new function(){}
jscript.ui.alerts.showErrorAlert=function(){
alert("An error occurred");
}
jscript.ui.alerts.MessageDisplayer=function(inMsg){
this.msg=inMsg;
this.toString=function{
return"msg="+this.msg;
}
}
function test(){
jscript.ui.alerts.showErrorAlert()
var v=new jscript.ui.alerts.MessageDisplayer("HOLLO!");
alert(v);
}
</script>
</head>
<body><input type="button" value="testok" onclick="test();"></body>
</html>

小白一只 可以帮我看下哪里出错了吗?
<!DOCTYPE html PUBLIC>
<html>
<head>
<title>第一章
</title>
<script>
jscript=function(){}
jscript.ui=function(){}
jscript.ui.alerts=new function(){}
jscript.ui.alerts.showErrorAlert=function(){
alert("An error occurred");
}
jscript.ui.alerts.MessageDisplayer=function(inMsg){
this.msg=inMsg;
this.toString=function{
return"msg="+this.msg;
}
}
function test(){
jscript.ui.alerts.showErrorAlert()
var v=new jscript.ui.alerts.MessageDisplayer("HOLLO!");
alert(v);
}
</script>
</head>
<body><input type="button" value="testok" onclick="test();"></body>
</html>
