1.try catch
function demo(){
try{
alert(str);
}catch (err){
alert(err);
}
demo();
}
2.throw
自定义错误
function demo(){
try{
let e=document.getElementById("txt").value;
if(e==""){
throw "请输入";
}
}catch(err){
alert(err);
}
}