Computer >> Máy Tính >  >> Lập trình >> HTML

Thuộc tính biểu mẫu Tuần nhập HTML DOM

Thuộc tính biểu mẫu Tuần nhập HTML DOM trả về tham chiếu của biểu mẫu kèm theo cho Tuần nhập.

Cú pháp

Sau đây là cú pháp -

Quay lại tham chiếu về biểu mẫu đối tượng

inputWeekObject.form

Ví dụ

Hãy để chúng tôi xem một ví dụ cho biểu mẫu Tuần nhập liệu tài sản -

<!DOCTYPE html>
<html>
<head>
<title>Input Week form</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form id="Mid-Term">
<fieldset>
<legend>Week-form</legend>
<label for="WeekSelect">Examination Week:
<input type="week" id="WeekSelect" value="2019-W36">
</label>
<input type="button" onclick="showExamination()" value="What exams are in this week? ">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var inputWeek = document.getElementById("WeekSelect");
   function showExamination() {
      divDisplay.textContent = 'Examinations: '+inputWeek.form.id;
   }
</script>
</body>
</html>

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Trước khi nhấp vào ‘Những kỳ thi nào trong tuần này?’ nút -

Thuộc tính biểu mẫu Tuần nhập HTML DOM

Sau khi kiểm tra ‘Các bài kiểm tra trong tuần này là gì?’ nút -

Thuộc tính biểu mẫu Tuần nhập HTML DOM