-2
這是下面的代碼,我想知道要在HTML表單中輸入onclick
屬性,以便我可以從一個頁面到另一個。如何使用html表單中的onclick屬性從一個html頁面轉到另一個頁面
<form class="login-container" action="/var/www/html/upload.php" method="post" enctype="multipart/form-data">
<p>
Select Image<input type="file" onchange="previewFile()" class="imageupload" name="image" id="image" placeholder="Select Image"/>
<br/>
<img src="" height="200" alt="Image preview..."/>
<br/>
<input type="number" min="1" name="quantity" placeholder="Quantity"/>
<br/>
<textarea rows="5" cols="40"placeholder="describe how you want the picture to be done"></textarea>
<br/>
<input type="submit" value="Next" onclick=" "/></p>
</form>
你是什麼意思,從一個頁面到另一個頁面? – Panther
當按鈕被點擊時,表單將被提交,並且它本身會帶你到你的'.../upload.php'返回的任何頁面。 – nnnnnn