我正在編輯一個HTML文件,並且有一個屬性應用程序截止日期。我如何在今天的HTML代碼中將默認值設置爲截止日期爲一年?感謝您的幫助如何在html中設置默認日期?
以下是原始的HTML代碼
<div class="field" >
Application Deadline:
<input type="date" id="id_application_deadline" name="application_deadline">
</div>>
我正在編輯一個HTML文件,並且有一個屬性應用程序截止日期。我如何在今天的HTML代碼中將默認值設置爲截止日期爲一年?感謝您的幫助如何在html中設置默認日期?
以下是原始的HTML代碼
<div class="field" >
Application Deadline:
<input type="date" id="id_application_deadline" name="application_deadline">
</div>>
只需設置所需的日期值屬性:
<input type="date" id="id_application_deadline" name="application_deadline" value="2013-05-29">
如果你只使用HTML,JavaScript的沒有,有贏」噸是一種方法來計算我認爲的1年抵消。
這也不是沒有可能的Java腳本,試試這個
<script language="javascript">
<!--
today = new Date();
document.write("", today.getDate(),"/",today.getMonth()+1,"/",today.getYear());
//-->
</script>
試試這個
<head>
<script type="text/javascript">
function onload()
{
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1;
var yyyy = today.getFullYear();
yyyy = parseInt(yyyy) + 1;
today = dd+'-'+mm+'-'+yyyy;
document.getElementById("id_application_deadline").value = today;
}
</script>
</head>
<body onload="onload()">
<div class="field" >
Application Deadline:
<input type="text" id="id_application_deadline" name="application_deadline">
</div>
</body>
使用Java腳本的HTML根本不會做的工作。 HTML只是數據的靜態表示。 –