<head>
<title>Date</title>
<script>
function myFunction(){
//Example I passed in 31-02-2013
var timeDate = document.getElementById('date').text;
//Get the first array and second array
var date = { timeDate[0] , timeDate[1] };
if( date < 1 || date > 30 )
alert( "Invalid date" );
}
</script>
</head>
<body>
<p>Date : <input type="text" id="date" ></p>
<input type="button" value=" Check it " onclick="myFunction()">
</body>
我只是使用 c++ 概念来存储我的字符串变量的第一个数组和第二个数组。我不知道如何将数组存储在 HTML 中。有人可以教我并纠正我吗?