使用 HTML post 而不影响当前页面

发布于 2024-11-04 23:23:23 字数 971 浏览 1 评论 0原文

我使用以下表单从我们的 Esendex 帐户发送短信:

        <form method="post" action="https://www.esendex.com/secure/messenger/formpost/SendSMS.aspx">

        <P>Username:<br>
            <INPUT name="EsendexUsername" type="text"></P>
        <P>Password:<br>
            <INPUT name="EsendexPassword" type="password"></P>
        <P>Account:<br>
            <INPUT name="EsendexAccount" type="text"></P>
        <P>Recipient:<br>

            <INPUT name="EsendexRecipient" type="text"></P>
        <P>Message:<br>
            <TEXTAREA name="EsendexBody" rows="3" cols="20"></TEXTAREA></P>
        <input type="submit" value="Send">
    </form>

这工作正常,但当我提交表单时,它会自动转到 Esendex 页面。我需要的是能够将信息发布到 Esendex 页面,但保持当前页面不变,因为它有像秒表等需要继续运行的信息。

有什么简单的方法可以做到这一点吗?我不需要 Esendex 网站的任何回复,只需将信息发送给它即可。

感谢您的帮助

I am using the following form to send text messages from our Esendex account:

        <form method="post" action="https://www.esendex.com/secure/messenger/formpost/SendSMS.aspx">

        <P>Username:<br>
            <INPUT name="EsendexUsername" type="text"></P>
        <P>Password:<br>
            <INPUT name="EsendexPassword" type="password"></P>
        <P>Account:<br>
            <INPUT name="EsendexAccount" type="text"></P>
        <P>Recipient:<br>

            <INPUT name="EsendexRecipient" type="text"></P>
        <P>Message:<br>
            <TEXTAREA name="EsendexBody" rows="3" cols="20"></TEXTAREA></P>
        <input type="submit" value="Send">
    </form>

This is working fine, but when I submit the form it automatically goes to the Esendex page. What I need is to be able to post the information to the Esendex page, but leave the current page untouched because it has information like a stopwatch etc which need to carry on running.

Is there any easy way to do this? I don't need any reply from the Esendex website, just send the information to it and that's it.

Thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

傲影 2024-11-11 23:23:24

您可以通过 进行 POST。

<form action="something" target="iframe_id">

</form>
<iframe id="iframe_id" name="iframe_name" style="display:none;"></iframe>

请注意。这可能会导致某些企业安全测试失败。

您的另一种选择是使用 AJAX 使用 jQuery

You can POST through an <iframe>.

<form action="something" target="iframe_id">

</form>
<iframe id="iframe_id" name="iframe_name" style="display:none;"></iframe>

Please note. This might fail some enterprise security tests.

Your other alternative is use AJAX using jQuery

复古式 2024-11-11 23:23:24

我认为您有点卡住了,至少在客户端 — JavaScript 允许您发出 HTTP POST 请求,但只能发送到与您的网页相同的域,这排除了向 Esendex 发送数据的可能性。

您可以将表单提交到服务器上的脚本,并让服务器将 HTTP POST 发送到 Esendex。

I think you’re a bit stuck, at least on the client side — JavaScript allows you to make HTTP POST requests, but only to the same domain that your web page is served from, which rules out sending data to Esendex.

You could submit the form to a script on your server, and get the server to send the HTTP POST to Esendex.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文