jQuery UI之手风琴

Posted odejsjhshw

tags:

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

1、实现源码

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>手风琴</title>
<link rel="stylesheet" href="../js/jquery-ui-1.10.4/development-bundle/themes/base/jquery.ui.all.css">
<script src="../js/jquery-ui-1.10.4/development-bundle/jquery-1.10.2.js"></script>
<script src="../js/jquery-ui-1.10.4/development-bundle/ui/jquery.ui.core.js"></script>
<script src="../js/jquery-ui-1.10.4/development-bundle/ui/jquery.ui.widget.js"></script>
<script src="../js/jquery-ui-1.10.4/development-bundle/ui/jquery.ui.accordion.js"></script>
<link rel="stylesheet" href="../js/jquery-ui-1.10.4/development-bundle/demos/demos.css">
<style>
    .accordion{
       background: fuchsia;
    }
</style>
<script>
    $(function(){
    	$("#accord").accordion();
    	
    	//设置Accordion背景色
    	$("#accord").addClass("accordion");
    });
</script>
</head>
<body>
   <div id="accord">
	<h3>苹果</h3>
	<div>
	    <h4>苹果</h4>
	</div>
	<h3>橘子</h3>
	<div>
	    <h4>橘子</h4>
	</div>
	<h3>梨子</h3>
	<div>
	   <h4>梨子</h4>
	</div>
   </div>
</body>
</html>

2、实现结果

 

技术图片

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow



以上是关于jQuery UI之手风琴的主要内容,如果未能解决你的问题,请参考以下文章

如何调整jQuery UI手风琴的高度?

JQuery UI:手风琴回调

如何在php中使用foreach循环将数据从数据库检索到jquery-ui手风琴

jQuery UI手风琴内的nicedit textarea宽度无法正常工作

JavaScript 案例之 手风琴特效(jQuery实现)

我无法在 jQuery UI 手风琴内的表单中输入文本