JS中如何打断点 function update() { debugger; if ($('#me').val() == 'true' && !$('#timeUpdate').val()) { tool($("#timeUpdate"), "请填写时间!", ""); return; } } 然后在浏览器上按F12。 再次执行JS代码,到这个点的时候就会被断掉,系统会弹出下面的弹窗。 点击蓝色的按钮,放开断点,继续执行代码