VBScript Debug 对象
Debug 调试对象是可以将输出发送到脚本调试器的全局对象。 这里,我们所说的调试器是Microsoft Script Debugger。
Debug调试对象不能像其他对象一样创建,但可以在调试时使用。
Debug调试对象支持以下方法。 如果脚本未在调试模式下执行,这些方法或对象将不起作用。 详细讨论了调试对象支持的方法。
Write
Write 方法在运行时将字符串发送到 Microsoft 脚本调试器的直接窗口。 如果脚本不是在调试模式下执行,则 Write 方法不起作用。
Write Debug.Write([str1 [, str2 [, ... [, strN]]]])
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim counter counter = 42 Debug.Write "The value of counter is " & counter </script> </body> </html>
WriteLine
Writeline 方法与 Write 方法非常相似。 WriteLine 方法在运行时将字符串(后跟换行符)发送到 Microsoft 脚本调试器的直接窗口。 如果脚本不是在调试模式下执行,则 WriteLine 方法不起作用。
Debug.WriteLine([str1 [, str2 [, ... [, strN]]]])
示例
<!DOCTYPE html> <html> <body> <script language = "vbscript" type = "text/vbscript"> Dim counter counter = 42 Debug.WriteLine "The value of counter is " & counter </script> </body> </html>
启用调试模式
要在调试模式下启用脚本,用户需要执行以下操作 −
在工具菜单上,单击"Internet 选项"。
在"Internet 选项"对话框中,单击"高级"选项卡。
在"浏览"类别中,清除"禁用脚本调试"复选框。
单击"确定"。
退出并重新启动 Internet Explorer。