单击 Ike's,您会注意到地图下方出现了一个 div。尝试点击链接。它不工作。
我正在使用它来显示/隐藏 div 的点击
function ikesClick() {
filler.style.display='none';
FrontDeskDesc.style.display='none';
LoungeDesc.style.display='none';
StudyDesc.style.display='none';
IkesDesc.style.display='inline';
};
如果您查看页面源代码,您可以在那里看到整个 Javascript。
我的问题是,我该怎么做才能使链接可点击?
我几乎可以肯定这是因为它显示无/内联的方式。
您可以在此处观察 HTML:
<section id="roomInfo">
<section id="filler" style="display:inline">
Hover over or select a colored area for details about individual rooms and locations in the library.
</section>
<section id="IkesDesc" style="display:none;">
<h1>Ike's - Late Night Diner</h1>
<p>
In the hub of President’s Park, Ike’s provides a late night dining option. Visit <a href="dining.gmu.edu">dining.gmu.edu</a> for hours of operation.
</p>
<img src="Ikes.JPG" style="max-width:500px; width:100%;" alt="Ike's Facade" />
</section>
<section id = "FrontDeskDesc" style="display:none;">
Get your temporary keys and stuff here!
</section>
<section id ="LoungeDesc" style="display:none;">
loungin'
</section>
<section id ="StudyDesc" style="display:none;">
Studying for finals yo
</section>
</section><!--end room info-->
在dining.gmu.edu 的链接所在的“IkesDesc”部分下问题仍然存在。