我正在为我的老师做一个调查,分发给全班(他不知道怎么做,我比他知道的多)
我的问题是我对 HTML 不太熟悉,也不知道如何让我的提交按钮工作。
这是我的代码:
<html>
<h2>
Please fill this out as feedback.
</h2>
<body>
<form>
<form method="post" action='mailto:example_email@hostname.com'>
<input type="hidden" name="Re" value="survey">
<td>On a scale of 1-10, how well did you understand this tutorial?</td><br>
<td>
<input type="radio" value="1" name="q1">1
<input type="radio" value="2" name="q1">2
<input type="radio" value="3" name="q1">3
<input type="radio" value="4" name="q1">4
<input type="radio" value="5" name="q1">5
<input type="radio" value="6" name="q1">6
<input type="radio" value="7" name="q1">7
<input type="radio" value="8" name="q1">8
<input type="radio" value="9" name="q1">9
<input type="radio" value="10" name="q1">10
</td>
<br>
<br>
<td>On a scale of 1-10, how much previous knowledge did you have before this tutorial?</td><br>
<td>
<input type="radio" value="1" name="q2">1
<input type="radio" value="2" name="q2">2
<input type="radio" value="3" name="q2">3
<input type="radio" value="4" name="q2">4
<input type="radio" value="5" name="q2">5
<input type="radio" value="6" name="q2">6
<input type="radio" value="7" name="q2">7
<input type="radio" value="8" name="q2">8
<input type="radio" value="9" name="q2">9
<input type="radio" value="10" name="q2">10
</td>
<br>
<br>
<td>On a scale of 1-10, how comfortable do you think your skills are with the knowledge you learned?</td><br>
<td>
<input type="radio" value="1" name="q3">1
<input type="radio" value="2" name="q3">2
<input type="radio" value="3" name="q3">3
<input type="radio" value="4" name="q3">4
<input type="radio" value="5" name="q3">5
<input type="radio" value="6" name="q3">6
<input type="radio" value="7" name="q3">7
<input type="radio" value="8" name="q3">8
<input type="radio" value="9" name="q3">9
<input type="radio" value="10" name="q3">10
</td>
<br>
<br>
<td>On a scale of 1-10, how likely are you to ever use HTML again?</td><br>
<td>
<input type="radio" value="1" name="q4">1
<input type="radio" value="2" name="q4">2
<input type="radio" value="3" name="q4">3
<input type="radio" value="4" name="q4">4
<input type="radio" value="5" name="q4">5
<input type="radio" value="6" name="q4">6
<input type="radio" value="7" name="q4">7
<input type="radio" value="8" name="q4">8
<input type="radio" value="9" name="q4">9
<input type="radio" value="10" name="q4">10
</td>
<br>
<br>
<td>On a scale of 1-10, did you enjoy taking part in this?</td><br>
<td>
<input type="radio" value="1" name="q5">1
<input type="radio" value="2" name="q5">2
<input type="radio" value="3" name="q5">3
<input type="radio" value="4" name="q5">4
<input type="radio" value="5" name="q5">5
<input type="radio" value="6" name="q5">6
<input type="radio" value="7" name="q5">7
<input type="radio" value="8" name="q5">8
<input type="radio" value="9" name="q5">9
<input type="radio" value="10" name="q5">10
</td>
<br>
<br>
Please include your thoughts, sugestions, or questions here:<BR>
<TEXTAREA NAME="Comments" ROWS="6" COLS="50"></TEXTAREA>
<br>
<br>
<td><input type="submit" value="Send"></td>
</form>
</body>
如果它很乱,我很抱歉,我只是想把它放在一起,我对 HTML 并不是那么好。
在我有 example_email@hostname.com 的地方,我有我的真实电子邮件。
谢谢!