标签:页面 rbo document show nbsp java col htm json
ajax-template app
/posts页面新增贴文,后直接删除会调用show action, 并转到show.html.erb
javascript:
$(document).on("turbolinks:load", function(){
$(".delete-post").click(function(evt){
// 只能终止刷新index后的行为。
evt.preventDefault();
var url = $(this).attr("href");
$.ajax({
url: url,
method: ‘DELETE‘,
dataType: ‘json‘,
success: function(data){
$("#post-" + data["id"]).remove();
}
})
// 也有preventDefault()的作用
// return false
})
})
标签:页面 rbo document show nbsp java col htm json
原文地址:https://www.cnblogs.com/chentianwei/p/9300345.html