JavaScript 最简单的jQuery Accordian

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 最简单的jQuery Accordian相关的知识,希望对你有一定的参考价值。

<style>
.works p {  display: none; }
</style>

<ul class="works"> 
	<li> 
		<a class="work" href="javascript:void(0)">Main Level 1</a>
		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
	</li> 
	<li> 
		<a class="work" href="javascript:void(0)">Main Level 2</a>
		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
	</li> 
	<li> 
		<a class="work" href="javascript:void(0)">Main Level 3</a>
		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
	</li> 
	<li> 
		<a class="work" href="javascript:void(0)">Main Level 4</a>
		<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
	</li> 
</ul> 

<!-- replace this with the latest jQuery version -->
<script src="http://code.jquery.com/jquery-1.4.4.js"></script>

<script type="text/javascript"> 
$().ready(function() {   
	$('.work').click(function() {
		$('.works p').slideUp('fast');
		if ($(this).siblings('p').is(":hidden"))  $(this).siblings('p').slideDown();
		return false;
	});
});
</script>

以上是关于JavaScript 最简单的jQuery Accordian的主要内容,如果未能解决你的问题,请参考以下文章

jQuery最简单的模式

jQuery使用最广泛的javascript函数库

在javascript中检测按键的最简单方法[关闭]

最常见的 20 个 jQuery 面试问题及答案

最常见的 20 个 jQuery 面试问题及答案

将 PHP 变量传递给外部 JavaScript(或 jQuery)文件的最有效方法