我的网站只包含一个页面,其中所有其他页面都加载到div中,我想要做的是创建面包屑来跟踪div中加载的页面,我在互联网上找到的所有解决方案仅适用于页面加载在整个窗口中,所以任何人都有更好的主意? 我的页面:
<div id="nav" class="mmenu" style="float: left; position: fixed;">
<ul type="none">
<li><a class="upper" id="1" style="border-top-left-radius: 6px; border-top-right-radius: 6px; background-image:url('menu icons/user-blue.gif'); background-repeat: no-repeat; background-position: left; background-position-x: 5px;" target="collabsoft" href= "ProfilePage.php?property_variable=mine">My Profile</a></li>
<li><a id="2" style="background-image:url('menu icons/comments.png'); background-repeat: no-repeat; background-position: left; background-position-x: 5px;" target="collabsoft" href= "viewMessages.php">Messages</a></li>
<li><a id="3" style="background-image:url('menu icons/newspaper.gif'); background-repeat: no-repeat; background-position: left; background-position-x: 5px;" target="collabsoft" href= "userHomepage.php">My Conferences</a></li>
<li><a id="4" style="background-image:url('menu icons/pageflip.gif'); background-repeat: no-repeat; background-position: left;background-position-x: 2px;" target="collabsoft" href= "availableConferences2.php">Conferences</a></li>
<li><a id="5" style="background-image:url('menu icons/users.gif'); background-repeat: no-repeat; background-position: left; background-position-x: 5px;" target="collabsoft" href= "incomingRequests.php">Requests</a></li>
<li><a id="6" style="background-image:url('menu icons/book.gif'); background-repeat: no-repeat; background-position: left;background-position-x: 5px;" target="collabsoft" href= "viewNews.php" >News</a></li>
<li><a class="lower" id="7" style="border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; background-image:url('menu icons/gear.gif'); background-repeat: no-repeat; background-position: left;background-position-x: 5px;" target="collabsoft" href= "generalOptions.php" >Options</a></li>
</ul>
</div>
<table id="collabsoft_table" style="border: 0px;">
<tr>
<td id="collabsoft_td"style="border:0px;">
<div scrolling="no" id="collabsoft" name="collabsoft" style="color: #003366; left:200px; display:none;position: absolute; border: 5px #1f487c solid; width: fit-content; height: fit-content; border-radius: 10px;"></div>
</td>
</tr>
</table>
用于在div中加载页面的函数:
$("#nav a").click(function(event) {
event.preventDefault();
var page = $(this).attr("href");
$("#collabsoft").slideUp("500",function() {
$("#collabsoft").load(page,function() {
$(this).slideDown(500);
});
});
return false;
});
答案 0 :(得分:2)
使用jQuery bbq等浏览器历史记录窗口小部件来跟踪页面。这样,您可以启用后退按钮,并且您将能够跟踪用户访问过的所有页面。请注意,这有一个陡峭的学习曲线。
答案 1 :(得分:0)
是的,jQuery bbq我觉得很棒。但在我最近的案例中,我使用了jQuery hashchange event ..它很容易,轻松,只是为我做了工作。
我没有使用过breadcrumb,但对于页面浏览器,我在使用jQuery加载相应的div时使用了$("#pageheader").text("header for div1/div2");
。