如何在我的global.js中创建一个通用函数来调用调试器;在JS中。我基本上设置一个值是否调试。我试过以下但是没有用。任何领导都将不胜感激。
<script type="text/javascript">
var debugModeVal = 1;
debugMode = function()
{
if(debugModeVal)
{
debugger;
}
return;
}
</script>
我从我的html文件中调用这个
<script type="text/javascript">
function callAnotherFunction()
{
debugMode;
}
</script>
答案 0 :(得分:0)
使用debug Mode()而不是debug Mode;在callAnotherFunction()中。
对于调试,请使用debugMode函数中的步骤来查找调用者。感谢Jan Dvorak。