我从调用除了函数本身之外没有内容的脚本时收到此错误。我完全剥离了调用它的HTML,但错误仍在弹出。以下是HTML的代码:
<!DOCTYPE html>
<html>
<head>
<script src="translate.js"></script>
</head>
<body>
<input type="button" id="translate" value="Translate" onclick="translate()"/>
</body>
</html>
对于JS:
function translate() {}
正如您所看到的,这是可能的最小代码,并且仍然会返回此错误。此Uncaught TypeError是唯一返回的错误。我怎么可能做错了?