我試圖用bootstrap做文件上傳,但我不知道我在做什麼,所以有人可以告訴我如何做到這一點,以及如何獲得上傳圖像預覽作爲文件上傳是爲了將圖像上傳到我的網站上。這是我到目前爲止在HTML中。bootstrap文件上傳與圖像預覽
<form class="form-horizontal" enctype="multipart/form-data">
<div class="form-group">
<label class="control-label col-sm-2">Pic Name:</label>
<div class="col-xs-4">
<input type="text" class="form-control" name="profilepicname"></input>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2">Upload Pic:</label>
<div class="col-xs-3">
<input type="file" name="profilepic"></input>
</div>
</div>
</form>
此外,在網頁上命名圖片和文件上傳部分之間還有很大的空間。我如何擺脫這個?
你可以發佈小提琴伴侶嗎? –