godfat (owner)

Revisions

gist: 117867 Download_button fork
public
Public Clone URL: git://gist.github.com/117867.git
Embed All Files: show embed
HTML #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-TW">
  <head profile="http://www.w3.org/2005/10/profile">
    <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8"/>
    <title>test jquery submit event hook</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"/>
    <script type="text/javascript">
      $(document).ready(function(){
        $('#s1').click(function(){
          if(confirm('XD')) $('#form').submit()
          else return false
        })
      })
    </script>
  </head>
  <body>
    <form id="form" action="action">
      <p><input id="s1" value="1" type="submit"/></p>
      <p><input id="s2" value="2" type="submit"/></p>
      <p><input id="s3" value="3" type="submit"/></p>
    </form>
  </body>
</html>