我想在提交到服务器之前验证文本/数据。这是我的 div
<div class="edit" id="editme">edit me</div>
所以我想验证 div 中的数据,然后提交。我尝试过这样的事情,
$('.edit').editable("${g.createLink(controller: 'comment', action:'editCommentForDocument')}",{
event: 'dblclick',
type : 'autogrow',
cancel : 'Cancel',
submit : 'OK',
indicator : '<img src="../images/spinner.gif">',
tooltip : 'Click to edit...',
onblur : ignore,
submitdata : function(value, settings){
if(value.trim() == ''){
alert('empty');
}
},
data : function(value, settings){
if(value.trim() == ''){
alert('empty');
}
},
edit: {
lineHeight : 12,
minHeight : 32
}
});
});
我什至尝试在 jeditable 块中使用 onsubmit -
onsubmit: function(settings, td) {
var input = $(td).find('input');
alert(input)
}
没有任何工作。请帮忙。