怎样用javascript的alert抛出详细异常ex.Message

2024-12-02 15:57:57
推荐回答(1个)
回答1:

	var x = 5;
try{
x = x + y;
}catch(ex){
alert(ex.message);
}