Catching all JavaScript errors/exceptions on Wii/Opera 9

扶醉桌前 提交于 2019-12-04 04:57:09
dvhh

this link was suggestting lookimng into firebug lite. I don't know how it would fare on the wii browser as I don't own the device.

It's a pity that the engine is too old for supporting draagonfly.

You could always program in the debugging code yourself, for instance:

try{
    yourFunction();
}catch(e){
    alert('yourFunction failed!');
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!