我有一个按钮,我希望它在单击它时执行一个功能,但由于某种原因它根本不起作用。我认为我将按钮链接到 js 文件的方式可能存在问题。这是我的 HTML:
<!DOCTYPE html>
<html lang = "en-us"></html>
<head>
<script src = "spotifybot.js" charset = "utf-8"></script>
<title>Spotify Login</title>
</head>
<body>
<button id = "login" style = "width: 100px;height: 100px">Login To Spotify</button>
</body>
</html>
这是我的 js 文件:
const loginButton = document.getElementById("login").addEventListener('click', loginToSpotify());
const request = require("request");
function loginToSpotify()
{
console.log("Here");
}
顺便说一句,这两个文件都位于同一文件夹中,以防您认为这可能是问题所在。
编辑:检查浏览器控制台后(我以为我可以检查我的 Visual Studio 控制台,但显然不能),我发现错误与“require”关键字有关
拉风的咖菲猫
慕容森
白猪掌柜的
白板的微信
相关分类