我正在使用onclick
两张图片,但是,一旦单击第一张图片,我希望第二张图片用作下一张图片的链接。我现在拥有的是两张来回切换的图片。
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Starting Your Journey</title>
<style>
a:link {color: #ffffff;}
.image
{
text-align: center;
border: 10px solid black;
margin-left: -30px;
margin-right: 5px;
margin-top: 80px;
}
</style>
</head>
<body style=" background-color:black;">
<script>
function changeImage()
{
element=document.getElementById('myimage')
if (element.src.match("two"))
{
element.src="./choosingstarter.png";
}
else
{
element.src="./choosingstartertwo.png";
}
}
</script>
<div class="image">
<img id="myimage" onclick="changeImage()" src="./choosingstarter.png">
</div>
<a href="../story_begin.html" style="text-decoration:none">Continue!</a>
</body>
</html>