我有一个问题,在HTML & JavaScript时,按下按钮不会打开,.谢谢[关闭]

cfh9epnr  于 2022-11-27  发布在  Java
关注(0)|答案(1)|浏览(119)

**已关闭。**此问题为not reproducible or was caused by typos。目前不接受答案。

这个问题是由一个打字错误或一个无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
5小时前关门了。
Improve this question
https://jsbin.com/haluhifuqe/edit?html,js,output我有一个问题,在HTML & JavaScript时,按下按钮不会打开。.帮助

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>

  <p id="paragraphText">This is awesome </p>

  <button oneclick="changeTheText()">Change The text</button>

  
  </body>
</html>
sgtfey8w

sgtfey8w1#

<button onclick="changeTheText()">Change The text</button>

它是onclick而不是oneclick

相关问题