Save content of a div to new file with jQuery AJAX and PHP

荒凉一梦 提交于 2019-12-01 22:56:59

Request method property is type instead of method ($.ajax({ method : "POST" is actually $.ajax({ type : "POST") and $_POST['data'] should be $_POST['id'].

There is no $_POST['data'] being posted, only $_POST['id']. Look at this part:

data: {id : bufferId},
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!