我正在尝试使用 Jeditable,一个用于 jQuery 的在线插件编辑器。
但是,我看不到在发送到服务器之前如何处理编辑的数据。
现在我有这个:
$('.edit_area').editable('http://www.example.com/save.php', {
type : 'textarea',
cancel : 'Cancel',
submit : 'OK',
indicator : '<img src="img/indicator.gif">',
tooltip : 'Click to edit...'
});
但是,在发送到服务器之前我将如何处理数据?我想清理一些字符,但我不知道该怎么做。