我目前正在构建一个基本原型,作为我在大学参加的 HCI 课程的一部分。我对应用程序屏幕进行了建模,现在希望在 html 中链接图像,以便您可以模拟使用和导航。不过,我对 HTML 几乎不熟悉,并且遇到了我正在尝试做的事情的问题。
当我打开此页面时,网址是
桌面/carpark_app_prototype/html/carstatus_page.html
但是在单击一个按钮后,该按钮应该完全通过区域标签嵌入的 url 将您导航到另一个页面,而不是在这里
桌面/carpark_app_prototype/html/carstatus_page.html#carstatussuccess_page
我究竟做错了什么?
<html>
<head>
<title>CarPark Application</title>
<h1 id="documentTitle">CarPark Application</h1>
</head>
<body>
<div class="Page" id="pulldownmenu_page">
<div class="ImageContainer">
<img width="320" height="500" src="pages%5Cpulldownmenu.png" usemap="#map_pulldownmenu" />
</div>
<map name="map_pulldownmenu">
<area shape="rect" coords="18,313,296,356" href="carparkstatusscreen_page.html" title="Go to page 'CarParkStatus_Screen'" />
<area shape="rect" coords="18,230,296,273" href="parkinghours_page.html" title="Go to page 'Parking_Hours'" />
<area shape="rect" coords="18,146,296,189" href="carstatus_page.html" title="Go to page 'Car_status'" />
<area shape="rect" coords="18,78,296,123" href="parkcar_page.html" title="Go to page 'Park_car'" />
<area shape="rect" coords="107,394,228,424" href="loginscreen_page.html" title="Go to page 'Login_Screen'" />
</map>
</div>
</body>
</html>