Skip to content

Instantly share code, notes, and snippets.

@3014zhangshuo
Created February 14, 2017 02:33
Show Gist options
  • Save 3014zhangshuo/f390ffeeea05b139a9a30068ea0d3e00 to your computer and use it in GitHub Desktop.
Save 3014zhangshuo/f390ffeeea05b139a9a30068ea0d3e00 to your computer and use it in GitHub Desktop.
$('#myModal').append(function (event) {
$.ajax({
url: '<%= user_resume_save_html_path(@resume) %>',
type: 'post',
data: {
content: $('#cv').html()
},
success: function (result) {
$('#cv').html(result);
// alert('保存成功!');
// 加入提示的特效 $("#notice").html("<%= flash[:notice] %>");
}
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment