Created
February 14, 2017 02:33
-
-
Save 3014zhangshuo/f390ffeeea05b139a9a30068ea0d3e00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#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