我希望我的光标在单击按钮后悬停在具有“one”类的元素上时是一只手。这是我的代码
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" language="JavaScript">
function cursor()
{
document.getElementByClass("one").style.cursor="pointer";
}
</script>
<h1 class="one">Mouse over this text!</h1>
</head>
<body>
<p class="fff">not me!</p>
<button type="button" onclick="cursor()">Change cursor</button>
</body>
</html>
到目前为止,当我将其更改为 getElementById("one") 并将其中一个元素从“one”类更改为“one”id 时,它才起作用。为什么这也不适用于课堂?