どのラジオボタンが選択されているかに基づいて、ウェブページに国の旗を表示する割り当てを行っています。割り当ての目的は、Javascript を使用して img 要素の src 属性を変更することです。関数は次の章までカバーされていないため、関数を使用することになっているとは思いません。現在の章のすべてのガイドに従いましたが、画像ではなくテキストの変更についてのみ説明しています。
これが私のコードです:
<!DOCTYPE HTML>
<html>
<head>
<title>Flags</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<form name="CountryList" method="get">
<table>
<tr>
<td>
<input type="radio" name="country" onclick="document.ProductImage.src='argentina.jpg'" />Argentina
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='australia.jpg'" />Australia
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='bolivia.jpg'" />Bolivia
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='cuba.jpg'" />Cuba
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='finland.jpg'" />Finland
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='france.jpg'" />France
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='italy.jpg'" />Italy
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='peru.jpg'" />Peru
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='syria.jpg'" />Syria
<br />
<input type="radio" name="country" onclick="document.ProductImage.src='tunisia.jpg'" />Tunisia
</td>
<td>
<a><img id="ProductImage" src="" alt="Flag" /></a>
</td>
</tr>
</table>
</form>
</body>
</html>
関数なしで img src 属性を変更することが不可能かどうか、誰かが私を正しい方向に向けることができますか?
ありがとう!