当我在Javascript / Jquery中使用调试器时,我突然得到'Visual Studio即时调试器': 例如:
function saveS() {
if (position1 != " " || position1 != null) {
**debugger;** //here it *should* be stopped.
$("#orderSaved").css('visibility', 'visible');
}
}
我尝试在控制面板中禁用脚本调试(Internet Explorer)和禁用脚本调试(其他) - >互联网选项。但我仍然得到'Just-In-Time'弹出窗口。 我怎样才能再次使用简单的debbuger?