我有以下代码打开模态弹出窗口,同时将鼠标悬停在高亮显示上。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
function getFrameSize(frameID) {
var result = {height:0, width:0};
if (document.getElementById) {
var frame = parent.document.getElementById(frameID);
if (frame.scrollWidth) {
result.height = frame.scrollHeight;
result.width = frame.scrollWidth;
}
}
return result;
}
</script>
</head>
<frameset rows="42,*" cols="*">
<frame src="menu_bar.html" name="topmenu" noresize="noresize" marginwidth="20">
<frameset rows="*" cols="33%,33%,33%" border="20" bordercolor="silver">
<frameset rows="25%,25%,25%" framespacing="2" border="2" bordercolor="2">
<frame Id="frameID" name="google" src="frame_a.html" marginwidth="20">
<frame src="frame_b.html" marginwidth="20">
<frame src="frame_c.html" marginwidth="20">
</frameset>
<frameset rows="25%,25%,25%" framespacing="2" border="2" bordercolor="2">
<frame src="frame_d.html" marginwidth="20">
<frame src="frame_e.html" marginwidth="20">
<frame src="frame_f.html" marginwidth="20">
</frameset>
<frameset rows="25%,25%,25%" framespacing="2" border="2" bordercolor="2" id="foo">
<frame src="frame_g.html" marginwidth="20">
<frame src="frame_h.html" Id="idFrame" marginwidth="20">
<frame src="frame_i.html" marginwidth="20">
</frameset>
</frameset>
</frameset>
</html>
基本上,我得到所有状态,然后点击它,它会打开模态。但是当我通过单击其X十字按钮并在模态外部单击来关闭模态时,它将返回到父页面(All good)。但它并没有删除链接的亮点。 :(当我退回时如何删除突出显示的图片?但是,我可以通过点击页面手动执行此操作。
答案 0 :(得分:1)
我认为你有css在哪里写,当用户访问链接时,你需要链接到某种颜色。
所以删除该css或添加自定义css。
a:visited { // After clicking on link you can remove highlight by this css.
color: green;
}