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

2024年12月02日 15:57
有1个网友回答
网友(1):

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