Safe way to display email address and contact number

后端 未结 3 1476
北荒
北荒 2021-01-27 09:45

Are there any tips to display a contact telephone number and email on a contact form webpage? I have a contact form on the page, but also want to give people the option of being

相关标签:
3条回答
  • 2021-01-27 10:32

    Here is one way to do it using Javascript:

    <script language=JavaScript type="text/javascript">
    <!--
    var user = "yourname";
    var host = "yourdomain.com";
    var link = user + "@" + host;
    document.write("<a hre" + "f=mai" + "lto:" + user + "@" + host + "><b>" + link + "</b></a>");
    --> </script>
    
    0 讨论(0)
  • 2021-01-27 10:43

    May be show it as a picture? with gd, for example

    0 讨论(0)
  • 2021-01-27 10:43

    You can use a captcha before showing the details.

    For example, The email address in this person's resume has a clickable link that pops up a captcha before displaying the full email.

    0 讨论(0)
提交回复
热议问题