目前我有一个脚本可以打开另一个页面的div,但是当你登陆目标页面时,div上方的标题是不可见的,因为当从主页中选择锚点ID时,它隐藏在固定标题后面。我想在目标div之前偏移标题,以便在网站标题下方显示它。
HTML ...
<h2 class="section-heading toggle">content 1 heading</h2>
<div id="content1" class="slide-content">content</div>
...的jQuery
var hash = window.location.hash; //
if(hash != "") {
var id = hash.substr(1); // get rid of #
document.getElementById(id).style.display = 'block';
$(hash).prev().first().addClass("open");
}