我的jQuery脚本是:
<p class="remove">REMOVE ME</p>
<p>KEEP ME</p>
<p class="remove">REMOVE ME</p>
因此,当我打开第一个标签并将其打开时,然后当我打开第二个标签时,第一个标签关闭。我如何一次打开多个面板?
我尝试了所提到的here,但似乎没有工作
答案 0 :(得分:0)
将它变成多个手风琴会对你的情况有效吗?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./jquery-ui.css">
<script src="./jquery-1.12.4.js"></script>
<script src="./jquery-ui.js"></script>
<script>
$(function() {
$(".myaccordion" ).each(function( index ) {$(this).accordion({collapsible:true});});
});
</script>
</head>
<body>
<div class="myaccordion">
<h3>Section 1</h3>
<div><p>one</p></div>
</div>
<div class="myaccordion">
<h3>Section 2</h3>
<div><p>two</p></div>
</div>
</body>
</html>