<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>แบบฟอร์มกรอกข้อมูล</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f9f9f9;
}
form {
max-width: 400px;
margin: auto;
background: #ffffff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
font-size: 14px;
margin-bottom: 5px;
display: block;
}
input, select, textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
button {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1 style="text-align: center;">แบบฟอร์มกรอกข้อมูล</h1>
<form id="dataForm">
<label for="lineNumber">หมายเลขไลน์</label>
<input type="text" id="lineNumber" name="lineNumber" placeholder="กรอกหมายเลขไลน์" required>
<label for="model">โมเดล</label>
<input type="text" id="model" name="model" placeholder="กรอกชื่อโมเดล" required>
<label for="foremanName">ชื่อโฟร์แมน</label>
<input type="text" id="foremanName" name="foremanName" placeholder="กรอกชื่อโฟร์แมน" required>
<label for="reason">สาเหตุที่ปิดไลน์</label>
<textarea id="reason" name="reason" placeholder="ระบุสาเหตุ" required></textarea>
<label for="stopTime">เวลาที่ปิด</label>
<input type="datetime-local" id="stopTime" name="stopTime" required>
<label for="startTime">เวลาที่เปิด</label>
<input type="datetime-local" id="startTime" name="startTime" required>
<label for="totalTime">สรุปเวลาที่ปิดไลน์</label>
<input type="text" id="totalTime" name="totalTime" placeholder="ระบุเวลาที่ปิดรวม" disabled>
<button type="button" onclick="submitForm()">ส่งข้อมูล</button>
</form>
<script>
function calculateTotalTime() {
const stopTime
= new Date(document
.getElementById
("stopTime").value
); const startTime
= new Date(document
.getElementById
("startTime").value
);
if (stopTime && startTime && stopTime < startTime) {
const diff
= Math
.abs(startTime
- stopTime
); const hours
= Math
.floor(diff
/ (1000 * 60 * 60)); const minutes
= Math
.floor((diff
% (1000 * 60 * 60)) / (1000 * 60));
return `${hours} ชั่วโมง ${minutes} นาที`;
}
return "ข้อมูลไม่สมบูรณ์";
}
function submitForm() {
const formData = {
lineNumber: document.getElementById("lineNumber").value,
model: document.getElementById("model").value,
foremanName: document.getElementById("foremanName").value,
reason: document.getElementById("reason").value,
stopTime: document.getElementById("stopTime").value,
startTime: document.getElementById("startTime").value,
totalTime: calculateTotalTime()
};
// แสดงข้อมูลใน console
console
.log("ข้อมูลที่ส่ง:", formData
);
// แสดงผลรวมเวลาในฟอร์ม
document.getElementById("totalTime").value = formData.totalTime;
alert("ส่งข้อมูลสำเร็จ! โปรดตรวจสอบ Console สำหรับข้อมูล");
}
</script>
</body>
</html>