我有4 buttons
和4 divs
定位簡單HTML
頁如下 -與按鈕用戶選擇的圖像填充的div點擊
<!DOCTYPE html>
<html>
<head>
<style>
div.top {
position: relative;
left: 205px;
width: 200px;
height: 200px;
border: 3px solid #000000;
}
div.left {
position: relative;
top: 0px;
right: 0;
width: 200px;
height: 200px;
border: 3px solid #000000;
}
div.right {
position: relative;
bottom: 205px;
left: 410px;
width: 200px;
height: 200px;
border: 3px solid #000000;
}
div.bottom {
position: relative;
bottom: 205px;
left: 205px;
width: 200px;
height: 200px;
border: 3px solid #000000;
}
</style>
</head>
<div class="top"></div>
<div class="left"></div>
<div class="right"></div>
<div class="bottom"></div>
<button type="button">Image 1</button>
<button type="button">Image 2</button>
<button type="button">Image 3</button>
<button type="button">Image 4</button>
</body>
</html>
我想允許用戶能夠從文件瀏覽器中選擇一個特定的圖像,當點擊一個按鈕時,並將其顯示在相應的div
中。例如。當用戶點擊Image 1
時,文件瀏覽器應該要求他選擇一個圖像,該圖像被選中後將顯示在特定的div中。我希望用戶能夠爲所有4個div和按鈕做到這一點。 BEen卡住了太久,任何幫助都非常感謝!
如果是這種情況的代碼?你已經嘗試了什麼? – ggdx
我擡頭看看如何讓用戶上傳圖片,我看到的所有代碼片段都包含了構建表單的功能。我是HTML新手,不確定是否有必要。因此我發佈了一個問題。 @丹白 – TheLuminor
文件只是另一種輸入類型。即使它是唯一的領域,它仍然是一種形式。 – ggdx