通过html表单发送参数

时间:2019-07-01 14:57:29

标签: html post get

我正在尝试使用GET方法发送参数,但是我无法获得正确的响应。这些是参数: 名称,电子邮件,重要性,新闻通讯,消息 这是我的HTML:

<form action="http://www.fulek.com/VUA/SUPIT/ContactUs" method="GET">
        <label for="name">Full name:</label>
        <input type="text" id="name" name="name">
        <label for="email">E-mail:</label>
        <input type="email" id="email" name="email">
        <label>Message importance:</label>
        <select style="border: 1px solid #ccc; border-radius: 4px; width: 
300px; height: 40px;" name="importance">
            <option value="high">High</option>
            <option value="mid">Mid</option>
            <option value="low">Low</option>
    </select>
    <label>Recieve newsletter</label>
    <input type="checkbox" name="newsletter" id="newsletter" value="yes" 
style="width:10%;">
    <br>
    <label>Your Message:</label>
    <textarea name="message" rows="10" cols="40" style="border: 1px solid 
#ccc;
    border-radius: 4px;"></textarea>
        <input type="submit" value="Send" />
    </form>

1 个答案:

答案 0 :(得分:0)

通过在Google中搜索端点地址,我在github上找到了一个可行的示例。

https://github.com/kelj0/Simple-FoodShop/blob/master/templates/index.html

从那里您可以发现“ newsletter”参数应该是“ true”而不是“ yes”。 将其更改为

<input type="checkbox" name="newsletter" id="newsletter" value="true" style="width:10%;">