我尝试使用window.alert
进行调试,但window.alert
本身会生成错误消息:
Line: 559
Error: Unable to get value of the property 'alert': object is null or undefined
此声明显示在http://phillipmfeldman.org/English/hangman.new.html的第560行 任何关于我做错的建议都将受到赞赏。
答案 0 :(得分:2)
在第578行,您将覆盖函数范围中的window
。使用其他变量名称。
答案 1 :(得分:1)
为什么不写.. alert("your stuff");
if (levels_selected == 0) {
alert("You must select at least one level of play!");
console.log("your stuff")
return;
}
答案 2 :(得分:0)
window.alert
不存在。你的意思是alert()
。正如PeeHaa在评论中所说,你应该使用console.log()
进行调试。
答案 3 :(得分:0)
var window = averaging_windows [i_averaging_window];
重新定义了这个窗口。你应该使用正确的局部变量名,对于调试,最好使用console.log,恕我直言。