私は JavaScript を学び始めていますが、ボタンの前に「エフェメラル」が永久に表示されず、ボタンが押される前に元の HTML ページに戻るのはなぜだろうかと思っていました。
index.html
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="mind.js"></script>
</head>
<body>
<h1 id = "identifier"></h1>
<form>
<button value = "button!" onclick="doSomething()"> </button>
</form>
</body>
</html>
マインド.js
function doSomething() {
document.getElementById("identifier").innerHTML = '<i>Ephemeral</i>';
}