87,990
社区成员
发帖
与我相关
我的任务
分享<a href="" name="names">111</a>
<a href="2." name="names">222</a>
<a href="" name="names">333</a>
<script type = "text/javascript" >
var th = document.getElementsByName('names');
for(var i = 0; i < th.length; i ++) {
th[i].onmouseover = function() {
for(var j = 0; j < th.length; j ++) th[j].style.textDecoration = 'none';
this.style.textDecoration = 'underline';
}
}
</script>