2017-04-01 65 views
-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> 
+0

你是什麼意思,從一個頁面到另一個頁面? – Panther

+0

當按鈕被點擊時,表單將被提交,並且它本身會帶你到你的'.../upload.php'返回的任何頁面。 – nnnnnn

回答

0

當你點擊上upload.php的在這裏您將您的數據到數據庫表的提交按鈕都將是後期。 成功插入數據後,在下面的代碼中將重定向到另一個頁面,您想在按鈕單擊時打開該頁面。

header('location:page2.php');

相關問題