0

我需要一个按钮来通过 ajax 调用 php 页面。我需要使用 mailto 链接打开客户电子邮件的按钮。php 页面生成电子邮件,其中包含将凭据传递到安全站点的加密字符串。

基本上,我需要按以下顺序发生这些事情:

单击按钮。进行ajax调用。使用“mailto:subject=your_secret_link&body= http://securesite.com?authcode=encrytpedstuff ”填充 href打开客户的电子邮件。

我试过这个:html部分:

<span id="mailframe"><a href=# id="myemail"><input name="Request Signing via Email"  value="Request Signing via Email" type="button" class="redButton" onclick="sendEmail();"/></a></span>

javascript部分

function sendEmail() {
    var hash=document.getElementById('hash').value;
    var obj=document.getElementById('mailframe');
    var email=document.getElementById('myemail');
    var mailxml = new XMLHttpRequest;

    mailxml.onreadystatechange = function() {

        if ((mailxml.readyState == 4) && ((mailxml.status == 302)|| (mailxml.status == 200))) {
            email.href=mailxml.responseText;
        }
    }

    mailxml.open("GET",'/secure/literature/generateid.php?hash='+hash+'&docid=<?=$docid?>' );
    mailxml.send();
}

它适用于 IE,但不适用于 Firefox。有任何想法吗?

4

1 回答 1

0

我认为您需要这样的东西(适用于 FireFox 24):

    <script type="text/javascript">
        function sendEmail() {
            var hash=document.getElementById('hash').value;

            var email=document.getElementById('myemail');
            var mailxml = new XMLHttpRequest;

            mailxml.onreadystatechange = function() {
                if (mailxml.readyState == 4 && ((mailxml.status == 302) || (mailxml.status == 200))) {
                    window.location.href = mailxml.responseText;
                }
            };

            mailxml.open("GET", "/your/long/url?with=parameters", true);
            mailxml.send();}
    </script>

    <div>
        <input type="button" onclick="sendEmail()" value="Send E-mail"/>
        <input type="text" name="hash" id="hash" value="hashValue" />
        <a href="#" id="myemail">E-mail link</a>
    </div>

还要检查在代码中检索跨浏览器 XmlHttpRequest和大括号的最简单方法。

于 2013-09-23T18:28:53.603 回答