用js动态更改中href的值,怎么实现跳转?

JavaScript023

用js动态更改中href的值,怎么实现跳转?,第1张

使用a标签也就是使用下样式而已

既然是跳转

将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')//就是你想要的了