最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Onclick shouldn't trigger form data submission - Stack Overflow

programmeradmin0浏览0评论

I just found out that every time onclick event for my <button> placed inside <form> tag triggers, form submits it's data as if i clicked <input type='submit'>. I don't want that. Buttons inside my form serve other task, form shouldn't submit data after i clicked one of them.

To be more clear, i want this code:

<form action="" method="POST">
    <button onclick="alert('hi!')">Button</button>
    <br>
    <input type="submit" value="submit"/>
</form>

to show alert "hi!" when i click on the Button and it shouldn't open Google after that. It should only show Google when i press "submit".

I just found out that every time onclick event for my <button> placed inside <form> tag triggers, form submits it's data as if i clicked <input type='submit'>. I don't want that. Buttons inside my form serve other task, form shouldn't submit data after i clicked one of them.

To be more clear, i want this code:

<form action="http://www.google." method="POST">
    <button onclick="alert('hi!')">Button</button>
    <br>
    <input type="submit" value="submit"/>
</form>

to show alert "hi!" when i click on the Button and it shouldn't open Google after that. It should only show Google when i press "submit".

Share Improve this question asked Jun 27, 2012 at 9:56 AleharAlehar 6395 silver badges17 bronze badges 3
  • Esailija, it depends on a browser i think because i tested in in Chrome before i posted it in here and it redirects me to Google all right. – Alehar Commented Jun 27, 2012 at 10:01
  • Yes I just realized that, different browsers can assume different type because you didn't specify it – Esailija Commented Jun 27, 2012 at 10:02
  • possible duplicate of HTML button to NOT submit form – Jayarathina Madharasan Commented Mar 25, 2015 at 16:23
Add a ment  | 

3 Answers 3

Reset to default 10

Specify type="button":

<button type="button" onclick="alert('hi!')">Button</button>

From the linked article:

This [submit] is the default if the attribute is not specified

Try this..

onclick="alert('hi!'); return false;"

With jQuery use a span rather than an input, put use the .button call and then set a click event.

发布评论

评论列表(0)

  1. 暂无评论