我有一个弹出窗口,其中包含查看Ts& amp;的链接。在主页脚下的cs。我添加了这段代码
I have read the <a data-scroll href="home.html#terms" target="_blank">Terms & Conditions</a>
它会打开右页但不会跳转(或滚动)到页面上的正确位置。但是,如果我按下地址栏中的输入,它将转到正确的位置。有什么方法可以解决这个问题吗?
答案 0 :(得分:0)
在我的示例中它工作正常,但保留数据滚动:
<a href="home.html#terms" target="_blank">Terms & Conditions</a>
答案 1 :(得分:0)
雅,你的code.try没有错,如果可能的话提供工作样本。 像这样的东西工作正常
div {
height: 500px;
border: 1px solid green;
}
&#13;
<div id="top"><a data-scroll href="#bottom">go to bottom</a></div>
<div id="bottom"><a data-scroll href="http://stackoverflow.com/a/40574219/5929494" target="_self">Terms & Conditions (to SO)</a></br> i use *target= _self* in this case. but you can still using *target=_blank*</div>
&#13;