0

これは、私がローテーションしている画像のリストです。

これらの画像を個別にハイパーリンクするにはどうすればよいですか?

理想的には、このようなものを使用して、以下の各画像をリンクしたいと考えています。以下で使用する html リンクです。

<a href="/banners/chiropractor/">banners/chiropractor.jpg></a>

ここに私の完全なスクリプトがあります

    <html>
<head>

<script type="text/javascript">
var interval = 2.5; // delay between rotating images (in seconds)
var random_display = 1; // 0 = no, 1 = yes
interval *= 1000;

var image_index = 0;
image_list = new Array();
image_list[image_index++] = new imageItem("banners/chiropractor.jpg");
image_list[image_index++] = new imageItem("banners/chiropody.jpg");
image_list[image_index++] = new imageItem("banners/fitness ball.jpg");
image_list[image_index++] = new imageItem("banners/Dietician.jpg");
image_list[image_index++] = new imageItem("banners/Alexander technique.jpg");
var number_of_image = image_list.length;
function imageItem(image_location) {
this.image_item = new Image();
this.image_item.src = image_location;
}
function get_ImageItemLocation(imageObj) {
return(imageObj.image_item.src)
}
function generate(x, y) {
var range = y - x + 1;
return Math.floor(Math.random() * range) + x;
}
function getNextImage() {
if (random_display) {
    image_index = generate(0, number_of_image-1);
} else {
    image_index = (image_index+1) % number_of_image;
}
var new_image = get_ImageItemLocation(image_list[image_index]);
return(new_image);
}
function rotateImage(place) {
var new_image = getNextImage();
document[place].src = new_image;
var recur_call = "rotateImage('"+place+"')";
setTimeout(recur_call, interval);
}
</script>

</head>

<div>
<img name="rImage" src="banners/chiropractor.jpg" width=222 height=218>
<img name="rImage2" src="banners/chiropractor.jpg" width=222 height=218>
<img name="rImage3" src="banners/chiropractor.jpg" width=222 height=218>
<img name="rImage4" src="banners/chiropractor.jpg" width=222 height=218>
</div>

<script>
rotateImage('rImage');
rotateImage('rImage2');
rotateImage('rImage3');
rotateImage('rImage4');
</script>

</body>
</html>
4

1 に答える 1

0

あなたの質問は完全に明確ではありませんが、画像をリンクに変換したい場合、最も簡単な方法は onClick イベントハンドラーをそれぞれに添付することです...

var foo = new imageItem("banners/chiropractor.jpg");
//do whatever else you're doing with it...
foo.onclick = function(){
   self.location.href = "http://someplace.com";
   //or if you want to link to the image itself 
   self.location.href = this.src; //in this case "self" is the window and "this" is the image object.
}
于 2013-01-20T21:15:20.323 に答える