2011-10-04 10 views
6

¿Por qué en este código después haga clic en el botón sale error: http://jsfiddle.net/FyUgH/forma de Shell no valida

{"error": "Shell form does not validate{'html_initial_name': u'initial-js_lib', 'form': , 'html_name': 'js_lib', 'label': u'Js lib', 'field': , 'help_text': '', 'name': 'js_lib'}"}

<form action="#" method="POST"> 
    <input type="text" name="name"> 
    <button id="cli">Submit</button> 
</form> 


$('#cli').live('click',function(e){ 
     e.preventDefault(); 
    alert('oo') 
     if($('input[type="text"]').val()=='')alert('input is empty') 
    }) 
}); 

Respuesta

4

Eliminar adicional

}) 

Debe quedar como

$('#cli').live('click',function(e){ 
    e.preventDefault(); 
    alert('oo') 
    if($('input[type="text"]').val()=='')alert('input is empty') 
}); 

Cuestiones relacionadas