所以,我有一个 Impressum
链接,弹出 Impressum
div。
&lt ; a data-open =“something”> Impressum< / a>

< div class =“揭示”id =“something”data-reveal>
 < img src =“images / reverseLogo.png”>
 < H1> IMPRESSUM< / H1>
 < p为H. ligula mattis placerat。< / p>
 < p> Fusce vulputate eleifend sapien。< / p>
 < p> Suspendisse eu ligula。 < / P>
 < button class =“close-button”data-close aria-label =“Close modal”type =“button”>
 < span aria-hidden =“true”>& times;< / span>
 < / button>
< / div>



 我想问一下是否有办法(我知道)如果在浏览器上禁用 Javascript
,则存在,但我不知道如何实现它)重定向到另一个页面。我目前使用:
< noscript>
 < meta http-equiv =“refresh”content =“0; url = impressum.html”>
< / noscript>


&# xA; 问题是如果 Javascript
没有启用,它会重定向给定的页面。
我想要的是重定向到 impressum页面
只有当我点击 impressum链接
。
提前致谢。

答案 0 :(得分:1)
HTML
<a href="./impressum.html" class="nojsimprint">Impressum</a>
<a data-open="something" class="jsimprint">Impressum</a>
CSS
.jsimprint{
display: hidden;
}
JS
$().ready(){
$(".nojsimprint").hide();
$(".jsimprint").show();
}