Chiều rộng kết quả:
px
×
<iframe src="https://viewcode.cunghocweb.com/trycode-full.php?id=71" style="width: 100%; height: 200px; border: 1px solid #ddd; border-radius: 10px; background: #fff"></iframe>
<html> <head> <script type="text/javascript"> function checkMarks() { marks = document.getElementById("marks").value; if (marks < 50) { alert("Tạch!"); } else if (marks >= 80 && marks < 90) { alert("Xếp loại B"); } else if (marks >= 90 && marks < 100) { alert("Xếp loại A"); } else { alert("Xếp loại TB"); } } </script> </head> <body> Marks: <input type="text" id="marks" name="marks" /> <input type="button" onclick="checkMarks()" value="Submit" /> </body> </html>