gpt4 book ai didi

html每周食谱表按钮

转载 作者:行者123 更新时间:2023-11-28 16:16:11 25 4
gpt4 key购买 nike

我需要帮助 我正在尝试使用 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。尝试在谷歌上搜索 w3schools,它们提供了非常好的 JavaScript 教程。

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

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com