By: Niraj in Javascript Tutorials on 2023年04月17日 [フレーム]
Here is a code snippet that should show and hide the links based on the button clicked:
<!DOCTYPE html>
<html>
<head>
<title>Links</title>
<style>
.links {
display: none;
}
</style>
</head> <body><div><button onclick="toggleLinks('category1')">Category 1</button><button onclick="toggleLinks('category2')">Category 2</button><button onclick="toggleLinks('category3')">Category 3</button><button onclick="toggleLinks('category4')">Category 4</button><button onclick="toggleLinks('category5')">Category 5</button><button onclick="toggleLinks('category6')">Category 6</button><button onclick="toggleLinks('category7')">Category 7</button></div><div class="category1 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><div class="category2 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><div class="category3 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><div class="category4 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><div class="category5 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div> <div class="category6 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><div class="category7 links"><a href="#">Link 1</a><a href="#">Link 2</a><a href="#">Link 3</a><!-- Add more links as needed --></div><script> function toggleLinks(category) { var links = document.getElementsByClassName('links'); for (var i = 0; i < links.length; i++) { if (links[i].classList.contains(category)) { if (links[i].style.display === 'block') { links[i].style.display = 'none'; } else { links[i].style.display = 'block'; } } else { links[i].style.display = 'none'; } } } </script></body></html>
This code uses the display CSS property to hide and show the link divs based on the category button clicked. When a button is clicked, it loops through all the link divs and only shows the links in the selected category, while hiding the links in all other categories.
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in Javascript )
Dynamically modify the option set in Dynamics 365 forms
promise and .then() in JavaScript
reduce() and filter() in JavaScript
History and evolution of Javascript
Using parseInt() and parseFloat() in JavaScript to convert data types to Numbers
Show how many characters remaining in a html text box using javascript
Latest Articles (in Javascript)
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate