我想制作一个电影院在线预订系统......我找到了一种将座位从可用座位更改为选定座位的方法,但它只适用于一个座位我需要一种方法来制作多个座位,并且每次用户点击一个座位它将更改为选定的座位图像
这是 1 个座位的代码,它正在工作(我认为问题出在 ids 上)
<html>
<head>
</head>
<body>
<h1>Select Here:</h1>
<img id="ChangeImage" src="images/available_seat_img.gif"/>
<script src="js/jquery.js"></script>
<script>
var image1 = 'images/available_seat_img.gif';
var image2 = 'images/selected_seat_img.gif';
$("#ChangeImage").click(function () {
$(this).attr('src', function (index, currentSource)
{ return currentSource == image2 ? image1 : image2; }); });
</script>
</body>
</html>