带有jQuery插件的电子邮件链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带有jQuery插件的电子邮件链接相关的知识,希望对你有一定的参考价值。
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'/></script> <script type='text/javascript'> $(function() { $('.email').each(function(i) { spamisTrash = spamisTrash.replace("[at]", "@"); spamisTrash = spamisTrash.replace("[dot]", "."); $(this).html(spamisTrash).replaceWith("<a href="mailto:" + $(this).text() + "">" + $(this).text() + "</a>"); }); }); </script> <div class="email">YourEmailID[at]gmail[dot]com</div> <p class="email">YourEmailID[at]yahoo[dot]com</p> <span class="email">YourEmailID[at]blahblehbloh[dot]com</span>
以上是关于带有jQuery插件的电子邮件链接的主要内容,如果未能解决你的问题,请参考以下文章
在 React 组件和 browserify 包中加载带有插件的 jQuery