search
HomeWeb Front-endHTML Tutorial页面列表闭合与展开效果出不来,求救_html/css_WEB-ITnose














回复讨论(解决方案)

发完整代码,不要发图片

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



无标题文档


    
    <script> <br /> <br /> function list(node){ <br /> //获取被操作的节点ul。 <br /> /* <br /> * 先通过事件源超链接标签获取其父节点td,然后在通过父节点获取ul节点。 <br /> */ <br /> var oTdNode = node.parentNode; <br /> var oUlNodes = oTdNode.getElementsByTagName("ul")[0]; <br /> //alert(oUlNodes.nodeName); <br /> <br /> //获取表格中所有的ul。 <br /> //先获取表格节点对象。 <br /> var oTabNode = document.getElementById("goodlist"); <br /> var oCollUlNodes = oTabNode.getElementsByTagName("ul"); <br /> for(var x; x<oCollUlNodes.length; x++){ <br /> if(oCollUlNodes[x] == oUlNodes){ <br /> if(oULNodes.className = "open"){ <br /> oUlNodes.className = "close"; <br /> }else{ <br /> oUlNodes.className = "open"; <br /> } <br /> }else{ <br /> oCollUlNodes.className = "close"; <br /> } <br /> } <br /> } <br /> <br /> </script>





    
        
        
        
        
        
    
        
        
        
        
        
    

             好友菜单
                

                        
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                 

            

             好友菜单
                

                        
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                 

            

             好友菜单
                

                        
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                 

            

             好友菜单
                

                        
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                     
  • 一个好友

  •                 

            

    
    


上面图片代码就是完整的,一直按顺序

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><style type="text/css">       /**对表格的Ul样式进行定义*去除无序样式*将列表外编剧取消**/table ul{margin:0px;list-style:none;padding:0px;background-color:#3C9DFF;	}   /*对表格进行样式定义*对表格框线进行定义。* 以及单元格的框线进行定义**/table { 	border:#86FFFF 2px thin;width:80px;	}table td{border:#8080ff 1px solid;background-color:#f3c98f;padding:0px;	}/**取消超链接样式**/table td a:link,table td a:visited{color:#FF0B0B;text-decoration:none;	}/*预定义一些样式*/.open{display:block;	}.close{display:none;	}    </style>        <script type="text/javascript">    	function list(node) {	//获取被操作的节点ul。	/*	 * 先通过事件源超链接标签获取其父节点td,然后在通过父节点获取ul节点。	 */	var oTdNode = node.parentNode;	var oUlNodes = oTdNode.getElementsByTagName("ul")[0];	//alert(oUlNodes.nodeName);	//获取表格中所有的ul。	//先获取表格节点对象。	var oTabNode = document.getElementById("goodlist");	var oCollUlNodes = oTabNode.getElementsByTagName("ul");	if (oUlNodes.className == "open") {		oUlNodes.className = "close";	} else {		for (var x = 0; x < oCollUlNodes.length; x++)			oCollUlNodes[x].className = "close";		oUlNodes.className = "open";	}}    </script></head><body><table id="goodlist">    	<tr>        	<td>            	<a href="javascript:void(0)" onclick="list(this)">好友菜单</a>                <ul class="open">                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                </ul>            </td>        </tr>        <tr>        	<td>            	<a href="javascript:void(0)" onclick="list(this)">好友菜单</a>                <ul class="close">                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                </ul>            </td>        </tr>    	<tr>        	<td>            	<a href="javascript:void(0)" onclick="list(this)">好友菜单</a>                <ul class="close">                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                </ul>            </td>        </tr>        <tr>        	<td>            	<a href="javascript:void(0)" onclick="list(this)">好友菜单</a>                <ul class="close">                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                    <li>一个好友</li>                </ul>            </td>        </tr>    </table>        	</body></html>

上面图片代码就是完整的,一直按顺序


主要是你发图片别人不好调试

代码我自己觉得没有问题,但就是出不了结果

谢谢,你的代码可以出结果,你看看我的代码哪里出差错了

谢谢,你的代码可以出结果,你看看我的代码哪里出差错了


你代码错误很多,逻辑性错误就不说了,只说语法错误

var oTabNode = document.getElementById("goodlist");
var oCollUlNodes = oTabNode.getElementsByTagName("ul");
for(var x; xif(oCollUlNodes[x] == oUlNodes){ //对象是按引用地址比较的。虽然两个jq对象中包含的元素一样,但引用地址不同也不相等
if(oULNodes.className = "open"){ //比较相等用 “==” 。 oULNodes的l是小写
  oUlNodes.className = "close";
}else{
oUlNodes.className = "open";
}
}else{
oCollUlNodes.className = "close"; //应该oCollUlNodes[x].className
}

<script type="text/javascript" src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script><script type="text/javascript">$(function(){	$(".hylist").click(function(){		$(this).parent().addClass('active').siblings().removeClass('active');	});});</script><style type="text/css">dl,dd,dt{margin:0;padding:0;}.box{width:200px;background:#66cccc;line-height:24px;font-size:14px;text-align:center;}.box .hylist{background:#ff9966;color:#fff;}.box dd{display:none;}.box .active .hylist{border-left:8px solid #f00;}.box .active dd{display:block;}</style><div class="box">	<dl class="active"><dt class="hylist">好友菜单</dt><dd>一个好友11</dd><dd>一个好友12</dd><dd>一个好友13</dd></dl>	<dl class=""><dt class="hylist">好友菜单</dt><dd>一个好友21</dd><dd>一个好友22</dd><dd>一个好友23</dd></dl>	<dl class=""><dt class="hylist">好友菜单</dt><dd>一个好友31</dd><dd>一个好友32</dd><dd>一个好友33</dd></dl></div>

十分感谢你,能给我一些指导吗,因为我自己在自学web前端,对于web整体意识还是模糊的

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft