我有一个解决方案,其启动项目是一个ASP.NET网站(没有 a .vbproj文件)
当我在调试模式下运行时,我得到的第一个错误是弹出
Unhandled exception at line 539, column 51 in script block
0x800a138a - JavaScript runtime error: Function expected
代码“文件”被称为“脚本块[dyanmic]”所以我认为这个js是由VS创建的,或者它是第三方代码,这意味着我可能无法修复它。当我做“休息”时,下面代码的这个大胆部分是黄色的。 (对不起,我不知道如何在堆栈溢出中突出显示代码块的一部分)
函数LPCTR(a){var b = 0; if(“undefined”!= typeof g _isdebug&& g_isdebug ||“undefined”!= typeof debug&& debug)init_LPctr(),b = LPc tr.increment(a);返回0!== b}
我收到了类似的几个错误。
答案 0 :(得分:0)
如果右键单击eror窗口并在底部选择以清除javascript错误。它们已经消失,下次编译项目时不会出现。
答案 1 :(得分:-1)
将代码放入try-catchblock
try {
// Your code here
} catch(e) {
// Code run on error, with info var e
}