jQuery 使用ajax,并刷新页面
程序员文章站
2022-06-30 21:31:11
如果是提交表单时,可以通过$('#update_form').serialize(),直接打包提交。 ......
1 <script> 2 function del_product_information(id) { 3 $.ajax({ 4 url: "{% url 'del_product_information' %}", //请求的url 5 type: "get", //请求的方式 6 datatype: 'json', // 前后端交互的数据格式 7 data: {'product_id': id}, //向后端发送的数据 8 async: false, //是否异步 9 success: function (msg) { //请求成功后执行的操作 10 alert(msg); 11 window.location.reload() //刷新页面 12 } 13 }) 14 } 15 </script>
如果是提交表单时,可以通过$('#update_form').serialize(),直接打包提交。