0

Href 链接在本地工作正常,但不是实时的。调查后,我发现触摸屏设备上的悬停状态存在问题。我认为这是我唯一的问题,但似乎链接现在根本没有点击。

更新 - 发现我还收到如下控制台错误消息:

拒绝在框架中显示“ http://www.youtube.com/watch?v=0lC8A0P4y00 ”,因为它将“X-Frame-Options”设置为“SAMEORIGIN”。

拒绝在框架中显示“ https://www.facebook.com/yiddishtwist?fref=ts ”,因为它将“X-Frame-Options”设置为“DENY”。

拒绝在框架中显示“ https://soundcloud.com/loya/sets/yto-forthcoming-debut-album ”,因为它将“X-Frame-Options”设置为“SAMEORIGIN”。

HTML

<a href="https://www.facebook.com/yiddishtwist?fref=ts">
                    <img src="images/facebook.png" height="62" alt="facebook link" /></a>

网站上没有 JS,除了以下内容,从 Mailchimp 复制粘贴并放在我的脑海中:

JS

<script type="text/javascript">document.createElement('header');
document.createElement('footer'); document.createElement('section'); 
document.createElement('article'); document.createElement('aside'); 
document.createElement('nav');</script>

我无法想象 CSS 会产生干扰,但以防万一,这是我的图像悬停状态:CSS

section img:hover {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";

}

感谢任何想法。

4

2 回答 2

2

您的整个网站都在一个大框架中,实际网站是http://yto.lemezandfridel.com/

由于防止点击劫持攻击,Facebook、Youtube 和 Soundcloud 链接拒绝加载到框架中。

短期解决方案是添加target="_top"到这些链接,它们将加载到父页面而不是框架中。

长期的解决方案是首先不要框定您的页面

于 2013-10-15T22:39:42.977 回答
1

试试这个:

<a href="https://www.facebook.com/yiddishtwist?fref=ts" target="_blank">

或者使用 JS:

<a href="#" onClick="window.open('https://www.facebook.com/yiddishtwist?fref=ts', '_blank')"></a>
于 2013-10-15T22:38:57.547 回答