gpt4 book ai didi

javascript - 单个页面上的多个导航和页面

转载 作者:行者123 更新时间:2023-11-28 12:13:04 25 4
gpt4 key购买 nike

<html>
<head>
<style type='text/css'>
span {
text-decoration:underline;
color:blue;
cursor:pointer;
}
</style>
<script>
// show the given page, hide the rest
function show(elementID) {
// try to find the requested page and alert if it's not found
var ele = document.getElementById(elementID);
if (!ele) {
alert("no such element");
return;
}
// get all pages, loop through them and hide them
var pages = document.getElementsByClassName('page');
for(var i = 0; i < pages.length; i++) {
pages[i].style.display = 'none';
}
// then show the requested page
ele.style.display = 'block';
}
</script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
$( "#accordion" ).accordion();
});
</script>
</head>
<body>
<div style="float: left; width: 20%;">
<div id="accordion">
<h3>Section 1</h3>
<div>
<p>
<button>Link 1</button>
</p>
</div>
<h3>Section 2</h3>
<div>
<p>
<button>Link 2</button>
</p>
</div>
</div>
</div>
<div style="float: right; width: 75%;">
<div>
<p>
Show page
<span onclick="show('Page1');">1</span>,
<span onclick="show('Page2');">2</span>,
<span onclick="show('Page3');">3</span>.
</p>
<div id="Page1" class="page" style="">
Content of page 1
</div>
<div id="Page2" class="page" style="display:none">
Content of page 2
</div>
<div id="Page3" class="page" style="display:none">
Content of page 3
</div>
</div>
</div>
</body>
</html>

以上是我目前的代码。

现在,当点击第1页、第2页或第3页时,下方会出现想要的页面。此代码设置在页面右侧。 <div style="float: right; width: 75%;">

页面左侧<div style="float: left; width: 20%;"> ,我有一个带有几个按钮链接的 Accordion 。我的问题是,当单击 Accordion 中的按钮链接 1 或按钮链接 2 时,如何从选择的不同页面中切换正确的页面,同时保持它现在具有的相同功能。

因此,首先我会单击 Accordion 中的按钮链接 1 以在右侧显示所需的页面,如果我想切换页面,那么我将单击 Accordion 中的按钮链接 2 并显示所需的页面。

对于视觉,请参阅此 fiddle
如果您看到 fiddle ,那么黑框内的链接会在 div 内切换页面,但我想添加另一个功能并根据用户是按下按钮链接 1 还是按钮链接 2 来切换黑框

有什么建议么?谢谢!

最佳答案

我不确定我是否正确理解了这个问题。

我认为对您非常有用的是查看 jQuery UI 选项卡: http://jqueryui.com/tabs/并将选项卡单击事件链接到 Accordion 菜单。

编辑:

JSFiddle,包括 jQuery UI 选项卡。提供了有关如何从 Accordion 菜单中的单击事件激活选项卡的代码。 http://jsfiddle.net/kimgysen/BcCnL/2/

$(document).ready(function() {
//Tabs
$('#body_div').tabs();
$('#newsfeed').click(function(){
$("#body_div").tabs("option", "active", 0);
});
$('#myprofile_edit').click(function(){
$("#body_div").tabs("option", "active", 1);
});
$('#myprofile_view').click(function(){
$("#body_div").tabs("option", "active", 2);
});
});

关于javascript - 单个页面上的多个导航和页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19375569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com