要在JavaScript中添加调试代码,请在您的程序中使用alert()或document.write()方法。例如,
var debugging = true; var whichImage = "widget"; if( debugging ) alert( "Calls swapImage() with argument: " + whichImage ); var swapStatus = swapImage( whichImage ); if( debugging ) alert( "Exits swapImage() with swapStatus=" + swapStatus );
检查alert()的内容和顺序,您可以非常容易地检查程序的健康状况。
以上是如何在我的JavaScript代码中添加调试代码?的详细内容。更多信息请关注PHP中文网其他相关文章!