动态更改页面上所有链接的href,以同时打开主链接和次链接
我的网页有很多按钮和链接,如下所示:
<div class="box">
<a href="http://foo.com/index.php/products/view/bar">
<div class="bar" style="margin-top:337px;cursor:pointer;"></div></a>
</div>
我想要一个 javascript 脚本,该脚本将遍历该页面并动态添加第二个链接到 href,以便它位于
<a href="#" onclick="window.open('http://foo.com/index.php/products/view/bar');
window.open('bar.com');"></a>
页面中的每个链接上。
我的网站中有很多页面,因此非常希望有人可以向我展示如何通过在 部分中实现一个 javascript 段来实现此目的,并让它动态更改上的所有链接页面。
谢谢!
my web page has many buttons and links like so:
<div class="box">
<a href="http://foo.com/index.php/products/view/bar">
<div class="bar" style="margin-top:337px;cursor:pointer;"></div></a>
</div>
and i would like a javascript script that would go through the page and dynamically add a second link to the href so it would be
<a href="#" onclick="window.open('http://foo.com/index.php/products/view/bar');
window.open('bar.com');"></a>
on each link in the page.
I have many pages in my site so would very much like if someone could show me how to do this by just implementing a javascript segment in the <head>
section and have it dynamically change all the links on the page.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设你有一个 A 标签 "
a
"// 调用加载时它。
Just pretend you have an A tag "
<a href="http://foo.com/index.php/products/view/bar">a</a>
"// call it when loaded.