既然是跳转
将a标签写成 <a href="javascript:void(0)" onclick="fun_a()" ></a>
然后fun_a写跳转事件 location.href=""
把a元素获取到,直接添加class属性就可以了,代码如下:<a href="#" id='a' clas="a"></a>
<script>
var oA = document.getElementById('a')
oA.class = 'heikuai'
</sciprt>
用浏览器打开,'审查元素':再看这个a元素时,a的class 属性值就变了。
先加个id:<a id='link' href="/index.html" target="_parent">js:
var link=document.getElementByidId('link').getAttribute('href')//就是你想要的了