kyoko
1999/08/24(火) 10:56:38
私は初心者です。初歩的な質問で申し訳ありません。
image画像(.gif)を特定のフォルダ(例えばimage)にまとめたいとき、"image/xxx.gif"のような
コードはどこに書けばよろしいのでしょうか?
教えてください。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=x-sjis">
<title>新しいページ 1</title>
<script LANGUAGE="JavaScript">
ULink = new Array();
for (i = 0; i <= 4; i++) {
ULink[i] = new Image();
ULink[i].src = 'ULink' + i + '.gif';
}
function LinkI (n,pos) {
document.images[pos].src = ULink[n].src;
}
function LinkO(n,pos) {
document.images[pos].src = 'Link' + n + '.gif';
}
</script>
</head>
<body>
<div align="center"><center>
<table border="0" width="640" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2"><img src="images2/head.gif" alt="head.gif (13484 バイト)" WIDTH="640"></td>
</tr>
<tr>
<td><a HREF="
http://www.xxx/" onMouseOver="LinkI(0,1);" onMouseOut="LinkO(0,1);"><img
src="Link0.gif" alt="Link0.gif (8799 バイト)" border="0" WIDTH="437" HEIGHT="39"></a></td>
<td><img src="images2/sitecon.gif" alt="sitecon.gif (1238 バイト)" WIDTH="204"
HEIGHT="39"></td>
</tr>
(以下省略)