我需要帮助,我试图用html和css制作每周食谱网页。它具有一个表格,当您按下“添加”按钮时,它会询问您要添加的食谱。该食谱应添加到用户指定的工作日中的一个工作日,该工作日应该是一个表格,其中显示特定日期的所有食谱,有人可以向我展示如何我可以做到这一点,谢谢下面是我的代码。

<!DOCTYPE html>
<html>
<head>
    <title> Weekly Recipes </title>
    <link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
    <div class="heading">
        <h2>Weekly Recipes</h2>
    <div>

    <form method="POST" action="index.html">
        <input type="text" name="task" class="task_input">
        <button type="submit" class="task_btn" name="submit">Add Recipe</button>

    </form>

    <div>
        <table id="t01">
          <tr>
            <th>Sunday</th>
            <th>Monday</th>
            <th>Tuesday</th>
            <th>Wednesday</th>
            <th>Thursday</th>
            <th>Friday</th>
            <th>Saturday</th>
          </tr>
        </table>
    </div>

</body>
</html>


CSS页面

    .heading{
    width: 400px;
    height:150px;
    margin: 30px auto;
    text-align: center;
    color: #6B8E23;
    background: #FFF8DC;
    border: 2px solid #6B8E23;
    border-radius: 20px

}

form{
    width:250px;
    margin: 30px auto;
    border-radius :5px;
    padding: 10px;
    background: #FFF8DC;
    border: 1px solid #6B8E23;
}

table {
  width:100%;

}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}
th, td {
  padding: 15px;
  text-align: left;
}
table#t01 tr:nth-child(even) {
  background-color: #eee;
}
table#t01 tr:nth-child(odd) {
 background-color: #fff;
}
table#t01 th {
  background-color: #6B8E23;
  color: white;


}

最佳答案

如果要实时更新站点,则需要JavaScript。
尝试在Google上搜索w3schools,它们提供了一个非常不错的JavaScript教程。

如果要将表单发送到服务器,以保存配方并在重新加载时将其呈现到页面,则可以使用PHP或某些类似的服务器端编程语言。

关于html - html每周食谱表按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58826189/

10-11 23:28