当前位置: 代码迷 >> Web前端 >> jquery点击展开跟关闭 内容部分,可以一次展开多个和点击按钮一次全部展开
  详细解决方案

jquery点击展开跟关闭 内容部分,可以一次展开多个和点击按钮一次全部展开

热度:421   发布时间:2013-12-21 20:16:01.0
jquery点击展开和关闭 内容部分,可以一次展开多个和点击按钮一次全部展开
/img/2013/12/21/10474477.jpg


演示地址:http://www.corange.cn/demo/3715/index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery点击展开和关闭 内容部分,可以一次展开多个和点击按钮一次全部展开 </title>

<link rel="stylesheet" type="text/css" href="styles.css" />

</head>

<body>

<div id="page">

<div id="headingSection">
<a class="button expand" href="#">Expand</a>
</div>

<div id="faqSection">
<dl>
<dt><span class="icon"></span>How does this FAQ section work?</dt>
<dd>With the help of jQuery and YQL, this script pulls the latest data ..</dd>

<dt><span class="icon"></span>Can you modify it?</dt>
<dd>This is the best part of it - you can change the contents ..</dd>
</dl>
</div>

</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>?

分享到:0


原文地址:http://www.corange.cn/archives/2010/11/3715.html

  相关解决方案