ජාවාස්ක්රිප්ට් හි වත්මන් වර්ෂය ලබා ගන්නේ කෙසේද?
ජාවාස්ක්රිප්ට් හි වත්මන් වර්ෂය ලබා ගන්නේ කෙසේද?
Answers:
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)
වත්මන් වර්ෂය සඳහා අපට දිනය පන්තියෙන් 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);
මගේ HTML වෙබ් පිටුවට එය කාවැදී ප්රතිදානය කර ඇත්තේ එලෙසිනි:
<div class="container">
<p class="text-center">Copyright ©
<script>
var CurrentYear = new Date().getFullYear()
document.write(CurrentYear)
</script>
</p>
</div>
HTML පිටුවට ප්රතිදානය පහත පරිදි වේ:
ප්රකාශන හිමිකම © 2018
new Date().getFullYear()
පිළිගත් පිළිතුරෙහි දැනටමත් දක්වා ඇති පරිදි ඔබේ පිළිතුර කිසිදු නව තොරතුරක් සපයන්නේ නැත .
ඔබට මේ ආකාරයට javascript භාවිතා කළ හැකිය. එසේ නොමැතිනම් ඔබට විශාල යෙදුමකට උපකාරී වන momentJs ප්ලගිනය භාවිතා කළ හැකිය .
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>
මෙම උදාහරණය ගන්න, ඔබට එය පෙන්වීමට අවශ්ය ඕනෑම තැනක පාදයේ හෝ වෙනත් පිළිතුරු වැනි වෙනත් ස්ථානයක තැබිය හැකිය
<script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
නිදසුනක් ලෙස පාදකයේ ප්රකාශන හිමිකම් සටහන
Copyright 2010 - <script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
මෙහි ඇති බොහෝ පිළිතුරු නිවැරදි වන්නේ ඔබේ දේශීය පදනම මත පදනම්ව වත්මන් වර්ෂය අවශ්ය නම් පමණි යන්ත්රයේ කාල කලාපය සහ ඕෆ්සෙට් (සේවාදායකයාගේ පැත්ත) - බොහෝ අවස්ථාවන්හිදී විශ්වාසදායක ලෙස සැලකිය නොහැකි ප්රභවය (එය යන්ත්රයෙන් යන්ත්රයට වෙනස් විය හැකි නිසා) .
විශ්වසනීය ප්රභවයන් නම්:
කැඳවන ලද ක්රමයක් Date
නිදසුනක් මඟින් ඔබේ යන්ත්රයේ දේශීය වේලාව මත පදනම්ව වටිනාකමක් ලැබෙනු ඇත.
වැඩි විස්තර "MDN වෙබ් ලියකියවිලි" වලින් සොයාගත හැකිය: JavaScript දිනය වස්තුව .
ඔබගේ පහසුව සඳහා, මම ඔවුන්ගේ ලියකියවිලි වලින් අදාළ සටහනක් එක් කළෙමි:
(...) දිනය සහ වේලාව ලබා ගැනීමට ඇති මූලික ක්රම හෝ එහි සංරචක සියල්ලම දේශීය (එනම් සත්කාරක පද්ධතියේ) කාල කලාපයේ සහ ඕෆ්සෙට් තුළ ක්රියාත්මක වේ.
මෙය සඳහන් කරන තවත් ප්රභවයක් නම්: ජාවාස්ක්රිප්ට් දිනය සහ කාල වස්තුව
යමෙකුගේ ඔරලෝසුව පැය කිහිපයකින් අක්රිය වී ඇත්නම් හෝ ඔවුන් වෙනත් කාල කලාපයක සිටී නම්, දිනය වස්තුව ඔබේ පරිගණකයේ නිර්මාණය කළ කාලයට වඩා වෙනස් වේලාවක් නිර්මාණය කරන බව සැලකිල්ලට ගැනීම වැදගත්ය.
ඔබට භාවිතා කළ හැකි විශ්වාසදායක ප්රභවයන් කිහිපයක් නම්:
නමුත් ඔබ හුදෙක් කාල නිරවද්යතාව ගැන තැකීමක් නොකරන්නේ නම් හෝ ඔබේ භාවිතයට දේශීය යන්ත්රයේ කාලයට සාපේක්ෂව කාල අගයක් අවශ්ය නම් ඔබට ජාවාස්ක්රිප්ට් හි Date
මූලික ක්රම Date.now()
හෝ new Date().getFullYear()
(වත්මන් වර්ෂය සඳහා) වැනි ආරක්ෂිතව භාවිතා කළ හැකිය .