<!DOCTYPE html>
<html>
<head>
<title>Chạy thử Type button trong thẻ BUTTON</title>
</head>
<body>
<h1>Chạy thử Type button trong thẻ BUTTON</h1>
<form method="POST" action="https://webmoi.vn/chay-thu-type-submit-trong-the-button/" >
<button id="clickhere" name="button" value="OK" type="button" onclick="hello()">Click Here</button>
<script>
function hello(){ alert("hello html button"); }
</script>
<button name="btngui" value="gui" type="submit">GỬI</button>
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Chạy thử Type button trong thẻ BUTTON</title>
</head>
<body>
<h1>Chạy thử Type button trong thẻ BUTTON</h1>
<form method="POST" action="https://webmoi.vn/chay-thu-type-submit-trong-the-button/" >
<button id="clickhere" name="button" value="OK" type="button" onclick="hello()">Click Here</button>
<script>
function hello(){ alert("hello html button"); }
</script>
<button name="btngui" value="gui" type="submit">GỬI</button>
</form>
</body>
</html>