我一直不知道 有这么简单的写法 jquery 表单提交
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 |
<?php if
(! empty ( $_POST )) { echo
$_POST [ ‘single‘ ]; exit ; } ?> <!DOCTYPE html> <html> <head> <title>test</title> </head> <body> Results: <p id= "results"
style= "color: red;" ></p> <form action= ""
id= "post" > <select name= "single" > <option>Single</option> <option>Single2</option> </select> <select name= "multiple"
multiple= "multiple" > <option selected= "selected" >Multiple</option> <option>Multiple2</option> <option selected= "selected" >Multiple3</option> </select><br/> <input type= "checkbox"
name= "check"
value= "check1" /> check1 <input type= "checkbox"
name= "check"
value= "check2"
checked= "checked" /> check2 <input type= "radio"
name= "radio"
value= "radio1"
checked= "checked" /> radio1 <input type= "radio"
name= "radio"
value= "radio2" /> radio2 <input type= "submit" /> </form> <script type= "text/javascript" > $( function () { $( ‘#post‘ ).submit( function () { var
data = $(this).serialize(); $( "#results" ).html(data); $.post($(this).attr( ‘action‘ ), data, function (r) { alert(r); }); return
false; }); }); </script> </body> </html> |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。