为什么在点击按钮后在此代码中出现错误:http://jsfiddle.net/FyUgH/
{“error”:“Shell表单不验证{'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')
})
});
答案 0 :(得分:4)
删除其他
})
应该看起来像
$('#cli').live('click',function(e){
e.preventDefault();
alert('oo')
if($('input[type="text"]').val()=='')alert('input is empty')
});