要在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中文網其他相關文章!