我需要滚动到.agree
问卷末尾显示的锚点。第一个问题决定了最后显示的内容,这就是为什么在文档末尾有#if_one
#if_two
和#if_three
.. 所以解决方案必须适用于所有 3 个可能的答案。我试图让它滚动到最后的 div (而不是跳转),并突出显示 div 使边框变为红色。
这是我试图滚动到并突出显示的锚的部分:
<div id="if_one">
<a href="http://websitelinkhere.com/1" class="button_primary agree">If Question 1 = Answer 1</a>
</div>
<div id="if_two">
<a href="http://websitelinkhere.com/2" class="button_primary agree">If Question 1 = Answer 2</a>
</div>
<div id="if_three">
<a href="http://websitelinkhere.com/3" class="button_primary agree">If Question 1 = Answer 3</a>
</div>
这是JSFiddle