|
3 | 3 | <head>
|
4 | 4 | <title></title>
|
5 | 5 | <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
|
6 |
| - <script src="http://fgnass.github.io/spin.js/dist/spin.min.js"></script> |
7 | 6 | <script>
|
8 | 7 | $(document).on('ready',function(){
|
9 | 8 | var pet=$('#main form').attr('action');
|
10 | 9 | var met=$('#main form').attr('method');
|
11 | 10 | var nom,m,msj; //para enviar la info con nuestro propio objeto json (sin usar serialize())
|
12 |
| - var opt={ |
13 |
| - lines: 13, // The number of lines to draw |
14 |
| - length: 20, // The length of each line |
15 |
| - width: 10, // The line thickness |
16 |
| - radius: 30, // The radius of the inner circle |
17 |
| - corners: 1, // Corner roundness (0..1) |
18 |
| - rotate: 0, // The rotation offset |
19 |
| - direction: 1, // 1: clockwise, -1: counterclockwise |
20 |
| - color: '#000', // #rgb or #rrggbb or array of colors |
21 |
| - speed: 1, // Rounds per second |
22 |
| - trail: 60, // Afterglow percentage |
23 |
| - shadow: false, // Whether to render a shadow |
24 |
| - hwaccel: false, // Whether to use hardware acceleration |
25 |
| - className: 'spinner', // The CSS class to assign to the spinner |
26 |
| - zIndex: 2e9, // The z-index (defaults to 2000000000) |
27 |
| - top: 'auto', // Top position relative to parent in px |
28 |
| - left: 'auto' // Left position relative to parent in px |
29 |
| - }; |
30 | 11 | var target=document.getElementById("#status");
|
31 | 12 |
|
32 | 13 | $('#main form').on('submit',function(e){
|
|
35 | 16 | $.ajax({
|
36 | 17 | beforeSend:function(){
|
37 | 18 | //$('#status').spin({radius:2,width:2,heigh:2,length:4});
|
38 |
| - var spinner=new Spinner(opt).spin(target); |
39 | 19 | nom=document.fo.nombre.value;
|
40 | 20 | m=document.fo.mail.value;
|
41 | 21 | msj=document.fo.mensaje.value;
|
42 | 22 | },
|
43 | 23 | url:pet,
|
44 | 24 | type:met,
|
45 |
| - data:$('#main form').serialize(), //esta es una manera de enviarlo |
| 25 | + contentType:'application/json', |
| 26 | + data:JSON.stringify({nombre:nom,mail:m,mensaje:msj}), |
| 27 | + //$('#main form').serialize(), //esta es una manera de enviarlo |
46 | 28 | //data:{nombre:nom,mail:m,mensaje:msj},
|
47 | 29 | success:function(resp){
|
48 | 30 | $('#status').html('<img src=./ok.png />');
|
|
0 commit comments