JSLint使用简单的函数提供错误,使用JSLint在括号上运行。
使用Javascript:
function soundSorry() {
getElementById("player").play();
}
错误代码:
2 Missing 'use strict' statement. getElementById("player").play();
2 'getElementById' was used before it was defined. getElementById("player").play();
有什么想法吗?
答案 0 :(得分:3)
您错过了document
前缀。在document
对象上定义getElementById
时,您需要使用document
对象调用它,如下所示:
document.getElementById("player").play();
// ^^^^^^