简体   繁体   中英

Button opening page twice

I have a simple form that looks like this:

<form action = '../../uploadGI/index.php' method = 'post' target = '_blank'>
... (inputs)
<button class='btn actionbtn closebtn' onClick = 'this.form.submit()' ... >Submit</button>
</form>

The forms sends a number of parameters to a new page where the user can upload a document (or scan it), the parameters are related to the type of doc, the table and table record it refers to in the db.

When I leave target = "_blank" out the form works as intended. But with target _blank the button opens the page... twice. What is causing this behaviour?

The default action for a button input in a form is to submit the form. No need for the onClick attribute/handler. Just remove the onClick

<button class='btn actionbtn closebtn' ... >Submit</button>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM