HTML DOM इनपुट वीक फॉर्म प्रॉपर्टी इनपुट वीक के लिए संलग्न फॉर्म का संदर्भ देता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
फ़ॉर्म . का संदर्भ लौटाना वस्तु
inputWeekObject.form
उदाहरण
आइए इनपुट वीक फॉर्म . के लिए एक उदाहरण देखें संपत्ति -
<!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> आउटपुट
यह निम्नलिखित आउटपुट देगा -
‘इस सप्ताह कौन सी परीक्षाएं हैं?’ . पर क्लिक करने से पहले बटन -

जाँच करने के बाद ‘इस सप्ताह कौन सी परीक्षाएँ हैं?’ बटन -
