利用jquery的ajax传值 $.ajax({ type:"POST", url:"", data:"content"=content, success:function(){ } }) 当data的字符串中包含有分号时,分好后面的字符串自动丢失,解决的办法是: 改变data的格式 $.ajax({ type:"POST", url:"", data:{ content:content }, success:function(){ } }) 就可以实现了。
Copyright @ 2024 SunProud Powered by .NET 9.0 on Kubernetes Powered by: .Text and ASP.NET Theme by: .NET Monster