이 기사의 예에서는 JavaScript가 웹 페이지의 하이퍼링크 수를 반환하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
다음 JS 코드는 document.links를 통해 웹페이지의 모든 하이퍼링크를 얻어 하이퍼링크 개수를 얻어옵니다
<!DOCTYPE html> <html> <body> <img src ="planets.gif" width="145" height="126" alt="Planets" usemap ="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,78,125" href="sun.htm" alt="Sun"> <area shape="circle" coords="88,60,5" href="mercury.htm" alt="Mercury"> <area shape="circle" coords="125,60,9" href="venus.htm" alt="Venus"> </map> <p><a href="/js/">JavaScript Tutorial</a></p> <p>Number of areas/links: <script> document.write(document.links.length); </script></p> </body> </html>
실행 결과는 다음과 같습니다.
Number of areas/links: 4
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.