博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JQuery发送Put、Delete请求 - 摘自网络
阅读量:5835 次
发布时间:2019-06-18

本文共 216 字,大约阅读时间需要 1 分钟。

DELETE:

$.ajax({
url: '/script.cgi', type: 'DELETE', success: function(result) { // Do something with the result } });

PUT:

$.ajax({
url: 'script.php', type: 'PUT', success: function( response ) { } });

转载地址:http://cwjcx.baihongyu.com/

你可能感兴趣的文章
Windows Phone开发(17):URI映射
查看>>
香港机柜云主机和虚拟主机建设完工
查看>>
redis终于有比较大的进展了,redis3.0.1 稳定版本发布,支持集群。
查看>>
Busybox支持中文的解决办法
查看>>
css3整理--clip
查看>>
我的第一个unity3d Shader, 很简单,基本就是拷贝
查看>>
VBA标准模块与类模块
查看>>
js图片延迟加载
查看>>
深入剖析 redis AOF 持久化策略
查看>>
Core Animation系列之CADisplayLink
查看>>
命名:前置条件方法命名规则。
查看>>
利用Hierarchy Viewer优化布局
查看>>
[leetcode]Construct Binary Tree from Inorder and Postorder Traversal @ Python
查看>>
vc 获取 硬盘序列号 和 cpu
查看>>
【读书笔记《Android游戏编程之从零开始》】5.Android 游戏开发常用的系统控件(ProgressBar、Seekbar)...
查看>>
HDUOJ-------2719The Seven Percent Solution
查看>>
hbase源码系列(十三)缓存机制MemStore与Block Cache
查看>>
转折点:移动互联网时代的商业法则
查看>>
【VI】如何删除匹配指定字符串的行(已解决)
查看>>
IIS7.5中调试.Net 4.0网站出现无厘头500错误的解决办法 (转)
查看>>