1

我使用就地编辑插件:http ://arashkarimzadeh.com/jquery/7-editable-jquery-plugin.html

我不工作太好了!我只需要检查新文本是否为空。如果是,我们必须返回并显示一些错误警报。

编码:

        $('.name').editable({ 
         submit:'Gem',         
         cancel:'Fortryd',         
         onSubmit: function(content){ 
             $.post('/admin/ajax/products/edit_category/',{ category_name:$(this).text(),category_id: this.parent().attr('id') })
          }
     });

有人可以帮帮我吗!:-/

4

3 回答 3

2

在发布之前检查函数content.current中的属性。 (还有一个可用于检查更改的属性)onSubmit
content.previous

例子:

$(document).ready(function() {
  $("#div1").editable({
    type      : 'textarea',
    submit    : 'OK',
    cancel    : 'Cancel',
    onSubmit : function(content) {
      alert(content.current+':'+content.previous);
    }
  });
});
于 2009-11-09T11:32:39.573 回答
0

我找到了一个解决方案:

 function end(content){
        if (content.current == '') {                 
              $(this).text(content.previous);
          }else{
              $.post('/admin/ajax/products/edit_category/',{ category_name:$(this).text(),category_id: this.parent().attr('id')});   
          }            
      }

它的作品,并去显示以前的数据

于 2009-11-09T11:43:01.283 回答
0

更改您的 onSubmit:

  onSubmit: function(content){
       if ($(this).val()=='') {
         alert("can't be blank");
        } else {
            $.post('/admin/ajax/products/edit_category/',{ category_name:$(this).text(),category_id: this.parent().attr('id') });      
        }
    }
于 2009-11-09T11:29:17.423 回答