-2
これは以下のコードで、HTMLフォームのonclick
属性を入力する方法を知りたいので、ページを別のページに移動します。あなたが送信ボタンをクリックするとhtmlフォームのonclick属性を使用して、あるhtmlページから別の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