我想用需要包含 url 的函数调用替换 href 中的 url。
示例:我有以下字符串:
<a href="www.google.com">Google</a>
some other text
<a href="www.wikipedia.org">Wikipedia</a>
我想取回这样的字符串:
<a href="javascript:anyFunction('www.google.com');">Google</a>
some other text
<a href="javascript:anyFunction('www.wikipedia.org')">Wikipedia</a>
我用 RegEx 测试了一些方法,但我对 RegEx 并不擅长。有没有人可以解决我的问题?
编辑:对不起,我忘了写。我正在构建一个应用程序应用程序。我不能使用 jQuery 或“文档”。我认为唯一的方法是正则表达式。