是否可以在html中创建联系表单?

时间:2018-03-06 17:15:04

标签: html contact-form

我想建立一个网站,其中包括访问者将填写的调查问卷。以下是我的内容:

<html>
<head>
</head>
<body>
<form method="post" action="index.php">
<label>Name:</label>
<input name="name" placeholder="Name">

<label>Email:</label>
<input name="email" type="email" placeholder="Email">

<label>Price:</label>
<select name="price" option="Free,1p - £1,£1 - £5,£5 - £10,£10 - £20,£20+"

<label>Comment:</label>
<textarea name="message" placeholder="Do you want to say anything else?"></textarea>

<input id="submit" name="submit" type="submit" value="submit">

</form>
</body>
</html>

大多数都有效,我不能因为某些原因让下拉工作。你能帮忙吗?

1 个答案:

答案 0 :(得分:1)

您的<select>元素错误。您需要有孩子<option>。见这里:https://www.w3schools.com/html/html_form_elements.asp

所以,更像是:

<select name="price">
    <option value="0">Free</option>
    <option value="0to1">1p - £1</option>
    <option value="1to5">£1 - £5</option>
    <!-- etc -->
</select>