PHP
·
发表于 5年以前
·
阅读量:8293
try {
供测试的代码块
}
catch(err) {
处理错误的代码块
}
try {
adddlert("欢迎访问!");
}
catch(err) {
console.log(err.message);
}