就地编辑 jquery
我使用就地编辑插件: 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') })
}
});
有人可以帮助我吗? :-/
I use edit-in-place plugin: http://arashkarimzadeh.com/jquery/7-editable-jquery-plugin.html
I't works Great!
I just need something to check if the new text is empty. If it is we have to go back and show some error alert.
The code:
$('.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') })
}
});
Can someone please help me! :-/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
发布前请检查
onSubmit
函数中的content.current
属性。(还有一个
content.previous
属性可用于检查更改)示例:
check the
content.current
property in theonSubmit
function before posting.(there's also a
content.previous
property that can be used to check for changes)Example:
更改您的 onSubmit:
Change your onSubmit:
我找到了一个解决方案:
它有效,并且可以显示以前的数据
I found a Solution:
Its works, and goes to show the previous data