如何代码触发a标签的href

2024-12-18 22:58:17
推荐回答(1个)
回答1:

给你的a标签取个Id
js中获取a元素对象的href连接如:
var href=document.getElementById("a的Id").href;
window.open(href);