带有jQuery插件的电子邮件链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有jQuery插件的电子邮件链接相关的知识,希望对你有一定的参考价值。

  1. <script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'/></script>
  2.  
  3. <script type='text/javascript'>
  4. $(function() {
  5. $('.email').each(function(i) {
  6. var spamisTrash = $(this).html();
  7. spamisTrash = spamisTrash.replace("[at]", "@");
  8. spamisTrash = spamisTrash.replace("[dot]", ".");
  9. $(this).html(spamisTrash).replaceWith("<a href="mailto:" + $(this).text() + "">" + $(this).text() + "</a>");
  10. });
  11. });
  12. </script>
  13.  
  14. <div class="email">YourEmailID[at]gmail[dot]com</div>
  15.  
  16. <p class="email">YourEmailID[at]yahoo[dot]com</p>
  17.  
  18. <span class="email">YourEmailID[at]blahblehbloh[dot]com</span>

以上是关于带有jQuery插件的电子邮件链接的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 验证插件:如何创建自己的消息

带有导航和选项卡的 jQuery 地址插件

在 React 组件和 browserify 包中加载带有插件的 jQuery

JQuery JQGrid插件,如何通过链接点击模拟工具栏过滤操作?

jquery插件库一般怎么使用。

如何调用jquery插件的方法