我在 CSS a:visited 中使用以不同方式标记访问过的链接。
我使用的链接是锚链接,形式为#news33。
单击后,链接在 IE 中以正确的颜色标记,但在重新加载页面时,颜色丢失。这适用于 Chrome。有人知道我应该做什么吗?
顺便说一句,我在 Windows 8 上使用 IE 10。
我发布了一些示例代码,在 IE 中可以看到问题,我改编自 Twitter Bootstrap 的示例。
<script src="jquery.js"></script>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<script src="bootstrap.js"></script>
<style type="text/css">
a:link { text-decoration:none; font-weight:bold; color:#e00000; }
a:visited { text-decoration:none; color:green; }
</style>
<script type="text/javascript">
jQuery(document).ready(function($) {
$('#test').click(function(){
$('#test222').click();
});
});
</script>
<!-- <a id="test2" href="http://www.commerzbank.de" data-toggle="modal">google</a> -->
<a id="test" href="#test222">Launch demo modal</a>
<a id="test222" href="#myModal2" data-toggle="modal">Launch demo modal 22</a>
<!-- Modal -->
<div id="myModal2" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button class="btn btn-primary">Save changes</button>
</div>
</div>
需要注意的重要一点是,链接是用来显示模态的,而模态 JS 库没有跟随链接。
谢谢和最好的问候
西奥