JSFiddle - React, Tailwind, and code Playground

by webwiis

HTML

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
</head>
<body>
    <p id="order">注文を確定しますか?</p>
    <button id="button">確定する</button>
    <script src="change.js"></script>
</body>
</html>

JavaScript

document.getElementById("button").onclick = function() {
    document.getElementById("order").innerHTML = "ご注文を承りました。";
    document.getElementById("button").style.display = "none";
}