मुझे जावास्क्रिप्ट में चालू वर्ष कैसे मिलेगा?
मुझे जावास्क्रिप्ट में चालू वर्ष कैसे मिलेगा?
जवाबों:
एक new Date()
वस्तु बनाएं और कॉल करें getFullYear()
:
new Date().getFullYear()
// returns the current year
एक पाद की तरह कुछ बुनियादी उदाहरण संदर्भ प्रदान करने के लिए स्वीकृत उत्तर को अपहरण करना जो हमेशा चालू वर्ष दिखाता है:
<footer>
© <span id="year"></span>
</footer>
कहीं ऊपर HTML लोड होने के बाद निष्पादित किया गया है:
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
// Return today's date and time
var currentTime = new Date()
// returns the month (from 0 to 11)
var month = currentTime.getMonth() + 1
// returns the day of the month (from 1 to 31)
var day = currentTime.getDate()
// returns the year (four digits)
var year = currentTime.getFullYear()
// write output MM/dd/yyyy
document.write(month + "/" + day + "/" + year)
यहाँ तिथि प्राप्त करने की एक और विधि है
new Date().getDate() // Get the day as a number (1-31)
new Date().getDay() // Get the weekday as a number (0-6)
new Date().getFullYear() // Get the four digit year (yyyy)
new Date().getHours() // Get the hour (0-23)
new Date().getMilliseconds() // Get the milliseconds (0-999)
new Date().getMinutes() // Get the minutes (0-59)
new Date().getMonth() // Get the month (0-11)
new Date().getSeconds() // Get the seconds (0-59)
new Date().getTime() // Get the time (milliseconds since January 1, 1970)
इस तरह से मैंने इसे अपने HTML वेब पेज पर एम्बेड और आउटपुट किया है:
<div class="container">
<p class="text-center">Copyright ©
<script>
var CurrentYear = new Date().getFullYear()
document.write(CurrentYear)
</script>
</p>
</div>
HTML पेज पर आउटपुट निम्नानुसार है:
कॉपीराइट © २०१ 201
new Date().getFullYear()
कि पहले से ही स्वीकृत उत्तर में दिखाया गया है।
वर्तमान वर्ष के लिए हम डेट क्लास से getFullYear () का उपयोग कर सकते हैं, हालांकि कई फ़ंक्शन हैं जिनका उपयोग आप आवश्यकताओं के अनुसार कर सकते हैं, कुछ फ़ंक्शन निम्नानुसार हैं,
var now = new Date()
console.log("Current Time is: " + now);
// getFullYear function will give current year
var currentYear = now.getFullYear()
console.log("Current year is: " + currentYear);
// getYear will give you the years after 1990 i.e currentYear-1990
var year = now.getYear()
console.log("Current year is: " + year);
// getMonth gives the month value but months starts from 0
// add 1 to get actual month value
var month = now.getMonth() + 1
console.log("Current month is: " + month);
// getDate gives the date value
var day = now.getDate()
console.log("Today's day is: " + day);
इस उदाहरण को लें, आप इसे फ़ुटवेयर में स्क्रिप्ट का संदर्भ लिए बिना या अन्य उत्तरों की तरह कहीं भी दिखाना चाहते हैं
<script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
एक उदाहरण के रूप में पाद लेख पर कॉपीराइट नोट
Copyright 2010 - <script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
आप बस इस तरह जावास्क्रिप्ट का उपयोग कर सकते हैं। अन्यथा आप पल-पल प्लग इन का उपयोग कर सकते हैं जो बड़े अनुप्रयोग में मदद करता है।
new Date().getDate() // Get the day as a number (1-31)
new Date().getDay() // Get the weekday as a number (0-6)
new Date().getFullYear() // Get the four digit year (yyyy)
new Date().getHours() // Get the hour (0-23)
new Date().getMilliseconds() // Get the milliseconds (0-999)
new Date().getMinutes() // Get the minutes (0-59)
new Date().getMonth() // Get the month (0-11)
new Date().getSeconds() // Get the seconds (0-59)
new Date().getTime() // Get the time (milliseconds since January 1, 1970)
function generate(type,element)
{
var value = "";
var date = new Date();
switch (type) {
case "Date":
value = date.getDate(); // Get the day as a number (1-31)
break;
case "Day":
value = date.getDay(); // Get the weekday as a number (0-6)
break;
case "FullYear":
value = date.getFullYear(); // Get the four digit year (yyyy)
break;
case "Hours":
value = date.getHours(); // Get the hour (0-23)
break;
case "Milliseconds":
value = date.getMilliseconds(); // Get the milliseconds (0-999)
break;
case "Minutes":
value = date.getMinutes(); // Get the minutes (0-59)
break;
case "Month":
value = date.getMonth(); // Get the month (0-11)
break;
case "Seconds":
value = date.getSeconds(); // Get the seconds (0-59)
break;
case "Time":
value = date.getTime(); // Get the time (milliseconds since January 1, 1970)
break;
}
$(element).siblings('span').text(value);
}
li{
list-style-type: none;
padding: 5px;
}
button{
width: 150px;
}
span{
margin-left: 100px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul>
<li>
<button type="button" onclick="generate('Date',this)">Get Date</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Day',this)">Get Day</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('FullYear',this)">Get Full Year</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Hours',this)">Get Hours</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Milliseconds',this)">Get Milliseconds</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Minutes',this)">Get Minutes</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Month',this)">Get Month</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Seconds',this)">Get Seconds</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Time',this)">Get Time</button>
<span></span>
</li>
</ul>
यहां पाए गए अधिकांश उत्तर केवल तभी सही होते हैं जब आपको अपने स्थानीय मशीन के टाइम ज़ोन और ऑफ़सेट (क्लाइंट साइड) के आधार पर चालू वर्ष की आवश्यकता होती है - ऐसा स्रोत, जिसे अधिकांश स्थितियों में विश्वसनीय नहीं माना जा सकता है (इसका उपयोग मशीन से मशीन में भिन्न हो सकता है) ।
विश्वसनीय स्रोत हैं:
Date
उदाहरण के लिए बुलाया गया एक तरीका आपकी मशीन के स्थानीय समय के आधार पर एक मान लौटाएगा।
अधिक विवरण "एमडीएन वेब डॉक्स" में पाया जा सकता है: जावास्क्रिप्ट दिनांक ऑब्जेक्ट ।
आपकी सुविधा के लिए, मैंने उनके डॉक्स से एक प्रासंगिक नोट जोड़ा है:
(...) तारीख और समय या इसके घटकों को लाने के लिए मूल तरीके स्थानीय (यानी होस्ट सिस्टम) समय क्षेत्र और ऑफसेट में काम करते हैं।
इसका उल्लेख करने वाला एक अन्य स्रोत है: जावास्क्रिप्ट तिथि और समय वस्तु
यह ध्यान रखना महत्वपूर्ण है कि यदि किसी की घड़ी कुछ घंटों से बंद है या वे अलग समय क्षेत्र में हैं, तो दिनांक ऑब्जेक्ट आपके कंप्यूटर पर बनाए गए से अलग समय बनाएगा।
कुछ विश्वसनीय स्रोत जिनका आप उपयोग कर सकते हैं:
लेकिन अगर आप केवल समय की सटीकता की परवाह नहीं करते हैं या यदि आपके उपयोग के मामले में स्थानीय मशीन के समय के सापेक्ष समय के मूल्य की आवश्यकता होती है, तो आप सुरक्षित रूप से जावास्क्रिप्ट के Date
बुनियादी तरीकों का उपयोग कर सकते हैं Date.now()
, या new Date().getFullYear()
(वर्तमान वर्ष के लिए)।