在html中使用mailto函数中的变量

时间:2016-11-03 05:03:46

标签: html mailto

我尝试使用mailto函数,

href="mailto:a@a.com?subject=this is subject body&body=this is message body"

现在,我想将用户输入存储在变量中,并且我希望将其传递给主题和主体。例如,

$s="this is subject body";
$b="this is message body";
mailto:a@a.com?subject=$s&body=$b;

所以可以在mailto函数中使用变量吗?

1 个答案:

答案 0 :(得分:2)

使用以下代码,您可以在mailto函数中编写用户特定的输入。

<html>
  <body>
    <input type="text" id="email"></input>
    <input type="text" id="subject"></input>
    <button onclick="myFunction()">Click me</button>

    <p id="demo"></p>

    <script>
      function myFunction() {
        var input = document.getElementById('email');
        email = input.value;
        var input = document.getElementById('subject');
        subject = input.value;

        window.location.href = "mailto:" + email + "?subject=" + subject;
      }
    </script>

  </body>
</html>