<html>
<head>
<title>Project 1.6</title>
<body>
<table>
<tr>
<td>
<form>
<input type= "radio" value = "Argentina" name = "places">Argentina<br>
<input type= "radio" value = "Australia" name = "places">Australia<br>
<input type= "radio" value = "Bolivia" name = "places">Bolivia<br>
<input type= "radio" value = "Cuba" name = "places">Cuba<br>
<input type= "radio" value = "Findland" name = "places">Findland<br>
<input type= "radio" value = "France" name = "places">France<br>
<input type= "radio" value = "Italy" name = "places">Italy<br>
<input type= "radio" value = "Peru" name = "places">Peru<br>
<input type= "radio" value = "Syria" name = "places">Syria<br>
<input type= "radio" value = "Tunisia" name = "places">Tunisia<br>
</form>
</td>
<td>
</td>
</tr>
</table>
</body>
</html>
所以,基本上我希望每當我點擊第一列中的一個單選按鈕時,我會在第二列中看到位置標誌的圖像? 請在HTML中。單擊單選按鈕時如何獲取第二列中顯示的圖像?
HTML是*標示語言*。它不起作用,它的目的是描述一個文件的佈局。一般來說瀏覽器。要響應按鈕點擊,您需要使用瀏覽器端腳本語言(JavaScript)或服務器端編程語言。還有什麼第二列?國旗圖像在哪裏? – 2014-09-29 23:24:55