在WordPress管理员中,我在页首和页脚中放置了老式锚标签和链接,以便到达极长插件页面的底部和顶部,而不是滚动和滚动。 / p>
我想在wpadminbar div中添加一个链接来定位wpbody-content div中的div id,如果可能的话使用ajax或jquery,因此它不必刷新页面。 / p>
我搜索了类似的帖子,但没有找到任何针对外部div的地址。非常感谢任何帮助。
答案 0 :(得分:0)
我不确切知道你需要什么。请检查此代码,我在页面底部添加了一个achor链接
$(document).ready(function(){
var topSection = $('body');
var position = topSection.offset();
$('.slide').on('click', function(){
$('body,html').animate({scrollTop: position.top}, 700)
});
})

body {
float: left;
width: 100%;
}
.common {
width: 100%;
float: left;
height: 400px;
background: #000;
margin-top: 30px;
}
.slide {
font-size:20px;
float:right;
}

<div class="common" ></div>
<div class="common" ></div>
<div class="common" ></div>
<div class="common" ></div>
<a href="#" class="slide">slide</a>
&#13;