단일 링크가 연결 해제되고 js 이벤트가 발생함
일괄 웹페이지 링크 취소 또는 링크 재설정 코드: ]
지정된 ID의 링크를 취소하거나 복원하려면 다음 코드를 참조하세요
코드는 다음과 같습니다.
var e=document.getElementById( "link1 ")
//Set
e.setAttribute( "href ",e.rel)
//Cancel
e.setAttribute( "rel ",e.href)
e.removeAttribute( "href ")
<script>
function doLinkAll(action){
var arr=document.getElementsByTagName("A")
for(var i=0;i <arr.length;i++){
if (action){ //重新设置链接
if (arr[i].rel) arr[i].setAttribute("href",arr[i].rel)
}else{ //取消所有链接
arr[i].setAttribute("rel",arr[i].href)
arr[i].removeAttribute("href")
}
}
o1.disabled=!action
o2.disabled=action
}
</script>코드 설명: 취소를 추가해야 하는 이유 e.setAttribute( "rel ",e.href)? 이 코드는 a에 rel을 추가하고 후속 링크 복원을 용이하게 하기 위해 좋은 링크를 설정하는 것입니다.