インラインエディターとして x-editable を使用しますhttp://vitalets.github.io/x-editable/docs.html
他のリンクでインラインフォームを切り替えたい:
$("#how").click(function(e) {
e.stopPropagation()
e.preventDefault()
$("#com").editable({
'toggle',
validate: function(value) {
if($.trim(value) == '') {
return 'The content can not be blank!';
}
}
})
})
しかし、それは機能しません。トグルと検証の両方のオプションを渡す方法を知りたいです。