我想添加一個函數,當客戶點擊小縮略圖時,它會添加一個圖像。看下面的代碼。Onclick Javascript函數添加圖像
<html>
<head>
<script type="text/javascript">
<!--
function addimage2() {
var img = document.createElement("img");
img.src = "swatch.jpg";
img.height = 75;
img.width = 113;
img.style.top=800;
img.style.right=100;
document.body.appendChild(img);
}
//-->
</script>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="43%" rowspan="2"><img src="tuffet-diagram.jpg" width="270" height="326"></td>
<td width="57%" height="162">Zone 1:</td>
</tr>
<tr>
<td>Zone 2: </td>
</tr>
<tr>
<td colspan="2">Zone 1 color:
<img src="swatch-sm.jpg" alt="swatch-sm" onClick="addimage2();"></td>
</tr>
<tr>
<td colspan="2">Zone 2 color:</td>
</tr>
</table>
</body>
</html>
它讓旁邊的縮略圖,而不是在指定的位置,例如當客戶點擊1區樣本,就應該添加到1區增加等
這裏的鏈接到我頁面:http://www.manufacturingsolutionscenter.org/salma/tuffet-color.html
謝謝。