如何在mailto正文中附加Java Script代码

时间:2017-08-09 17:13:32

标签: javascript html html5 mailto

我的代码如下所示,当邮箱打开时,它会在JS代码段中断开。

<a href="mailto:?subject=This is My Subject&body=Hithis is my text and my page url is"+window.location.href+\" click link to see Greater experienceto" target="_top" class="">

Email

我想在哪里动态显示网页中链接可用的网址。Expected email

2 个答案:

答案 0 :(得分:0)

以这种方式尝试:

<a href="#" onclick="javascript:window.location='mailto:?subject=Interesting information&body=I thought you might find this information interesting: ' + window.location + ' click link to see Greater experienceto'">Click</a>

答案 1 :(得分:0)


您的浏览器可能不支持。您是否尝试过更新浏览器或重新安装?在实现inbuild函数时,跨浏览器测试将始终存在问题。 为了我自己 。我将始终建立自己的形式,以避免这种情况。它啰嗦的概念,但总是最安全的,将来会节省更多的时间。 例如...创建自己的邮件表单..`dds

<form action="mailto:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Mail:<br>
<input type="text" name="email" style="width:600px; height: 100px"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

`

试试这个。 我希望它会有所帮助.. 如果您想要与上面发布的完全相同。你只需要做一些造型。我建议的是添加一个div并将表单包装在其中。例如。

<div id="main-container">
  <form>..
  ..
  ..
  ..
  </form>
</div>

干杯。 :)