如何创建发送http发布请求的脚本?

时间:2019-04-10 22:59:09

标签: forms xmlhttprequest http-post

我在一个Web应用程序上进行了一项调查,我想向该表单发送多个答案。 我想我应该使用XmlHttpRequest(),但我无法使其工作。 有人可以给我提供一个基本的代码示例来做到这一点吗?

这是调查的html代码,有2种可能的选择。

<form id="sond_4592" method="post" action="/sondaggi.aspx" onsubmit="return chkSond_4592.isFormValid();">
    <div class="sondaggio-opzione">
        <p class="sondaggio-opzione-radio"><input type="radio" name="SOId" class="check['intero'] input-mod" id="SOId_12073" value="12073" tabindex="2"></p>
        <p class="sondaggio-opzione-text"><label for="SOId_12073">YELLOW</label></p>
    </div>
    <div class="sondaggio-opzione">
        <p class="sondaggio-opzione-radio"><input type="radio" name="SOId" class="check['intero'] input-mod" id="SOId_12068" value="12068" tabindex="3"></p>
        <p class="sondaggio-opzione-text"><label for="SOId_12068">BLUE</label></p>
    </div>

    <p style="text-align:center"><button type="submit" name="sbSondaggioVota"><span class="btIco btIco-Tick"></span>VOTA</button></p>
    <input type="hidden" name="SondaggioId" value="4592">
    <input type="hidden" name="act" value="VotaSondaggio">
    </form>

enter image description here

0 个答案:

没有答案