Как вариант...
<!DOCTYPE html>
<html>
<head>
<!--
<script src="http://code.jquery.com/jquery-latest.js"></script>
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
var o={
1: 2,
3: 3,
4: 2,
55: 1,
3: 4,
76: 5,
4: 2
}
var a=[
'изображение 1',
'изображение 2',
'изображение 3',
'изображение 4',
'изображение 5',
];
function go(Id) {
alert(a[o[Id]-1]);
};
</script>
</head>
<body>
<input type="button" id='3' value="Test 3" onclick="go(this.id);" />
<input type="button" id='55' value="Test 55" onclick="go(this.id);" />
</body>
</html>
|