0

Pretty simple question, but much to my surprise I could not find an answer on the internets.

In PHP we have exit; which will simply stops executing any further code when it reaches that line, assuming there are no errors.

Does jQuery (JAVASCRIPT for all yous) have a similar built in function? This is to be used for debugging, not for production.

Thanks!

4

2 回答 2

3

window.stop()(vanilla JavaScript,而不是 jQuery)会模拟用户单击浏览器上的停止按钮,阻止浏览器下载和呈现当前页面。

于 2013-11-12T20:12:59.370 回答
-1

首先,小毛病:没有像 jQuery 这样的语言。这只是 JavaScript 之上的一个库框架。问题大概是JavaScript是否具有exit功能。

如果您想停止脚本执行,并且您处于调试环境中,您有几个选项,其中没有一个是退出:

  • 您可以弹出警报。这将停止执行,但不会让您做太多事情。
  • 您可以使用该debugger;语句。这可能是你想要的——只要把它放在一行中,如果你的控制台是打开的,它就会在那时调出调试器。

最后一种选择会起作用,但并不漂亮。只需抛出一个异常(或导致您自己的异常,例如myNonExistantVariable.thereIsNoProperty.soExceptionWillHappen = 0;

于 2013-11-12T20:11:08.627 回答