0

我有一张表,每个生日都有对应的值 - 包括 2 月 29 日时所有 366 个。我需要使用具有日期字段选择器的脚本制作一个网页,它会从该日期打开一个结果页面以获取相应的值。什么是最简单的框架来完成这个......我几乎没有 php 和 js 经验,但觉得这可能是构建它所必需的。有什么建议么?附加的代码是这个前端非常非常初步的基本外壳页面,但我不知道从这里去哪里。

<!DOCTYPE html>
<html>
<style media="screen" type="text/css">
* { 
padding: 0; 
margin: 0; 
} 
body { 
background-color: black; 
font-size: 12pt; 
font-family: "Times New Roman", serif; 
font-weight: bold; 
color: #fff; 
vertical-align: top;
text-align: center;
margin: 0; 
padding: 0; 
} 
h1, h2, h3{ 
text-align: center; 
font-weight: bold; 
font-family: Verdana, sans-serif; 
} 
img { 
border-style: none; 
background-color: transparent; 
}
</style>

<body>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<form action="demo_form.asp">
  What is your Birthday?: <input type="date" name="bday">
  <input type="submit">
</form>

</body>
</html>`
4

1 回答 1

1

您可能需要 PHP 和 Javascript。不幸的是,stackoverflow 不是一个教程网站,所以你必须自己开始学习这两种语言,至少达到你能够做你想做的事情的水平。http://www.w3schools.com/js/http://www.w3schools.com/php/是很好的起点。

于 2013-07-17T07:29:34.900 回答