我想将日期的值存储在用户选择的变量中而不使用form.I我能够使用javascript获取日期但是对于我的应用程序我需要将它们存储在php变量中。
<html>
<head>
<script>
function myFunction() {
var x = document.getElementById("date1").value;
document.getElementById("demo").innerHTML = x;
var y = document.getElementById("date2").value;
document.getElementById("demo1").innerHTML = y;
}
</script>
</head>
<body>
<?php
echo '<button onclick="myFunction()">Try it</button>';
echo '<input type="date" name="date1" >';
echo ' ';
echo '<label>'."Date2:".'</label>';
echo '<input type="date" name="date1">';
echo '<p id="demo"></p>';
echo '<p id="demo1"></p>';
?>
</body>
</html>