摘要:
01 $.ajax({ 02 type: "POST", 03 contentType: "application/json", 04 url: myurl, 05 data: {}, 06 timeout: 30000, //超时时间:30秒 07 dataType: 'json', 08 ... 阅读全文
摘要:
今天用到jquery来处理ajax,用到了json。但是很诧异,jquery的ajax回调时一直调用了error函数(一直提示parsererror异常),success函数一次没执行过 。代码如下:view sourceprint?1$.ajax({2type:'POST',3url:'/go.p... 阅读全文
摘要:
data:"{}", data为空也一定要传"{}";不然返回的是xml格式的。并提示parsererror 1、编写4种WebService方法 [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(Confor... 阅读全文
摘要:
"> My JSP 'fileupload.jsp' starting page --> jaThis is my JSP page. File: 提交 http://hi.baidu.com/zjcjava/item/1080cf4a76558907c01613f0 阅读全文
摘要:
jQuery Form 插件基于jQuery v1.4.2版返回JSON数据时一直报错;修改以下内容可恢复;原后台输出数据格式如:{sitename:'开发者网络',siteurl:'www.AAA.net',level:10} 需改为 {"sitename":"开发者网络","siteurl":"... 阅读全文
摘要:
find -name '*.php'|xargs grep 'include'//在当前目录及其子目录的php文件中查找include字符串find . -name '*.php' -exec grep -i -nH "include" {} \;//同上----------------------... 阅读全文