gpt4 book ai didi

javascript - 该按钮未调用 javascript 函数

转载 作者:行者123 更新时间:2023-11-28 11:51:44 25 4
gpt4 key购买 nike

我有一个按钮,我想在单击它时调用一个函数。目前还只是测试阶段。截至目前,当我运行它时,该按钮似乎无法单击。

index.html:

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/stylesheet.css"/>
<script type="text/javascript" src="javascript/javascript.js"></script>
</head>
<body>
<h1>
<img src="#" alt=""/>
</h1>

<h3>1. Getting Store categories</h3>
<button onclick="getCategories()">Click here to Get Categories.</button>
<p></p>

</body>
</html>

javascript.js:

function getcategories()
{
alert("TEST");
}

编辑:stylesheet.css:

* {
font-family: Ariel, Verdana, sans-serif;
}

h1 {
text-align: center;
color: #fff;
text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 5px 0px #555, 0px 6px 0px #444, 0px 7px 0px #333, 0px 8px 7px #001135;
font: 80px 'ChunkFiveRegular';
}

img {
position: absolute;
top: 0; bottom:0; left: 0; right:0;
margin: auto;
}

body {
background-color: #cccccc;
}

最佳答案

在您编写的 HTML 中

getCategories

但是在你的JS中你写了

getcategories

确保这些匹配。将来,打开您的开发工具(按 F12)并查看控制台。它会向您显示一条错误,指出您正在调用未定义的函数。

关于javascript - 该按钮未调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35613060/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com