首页 >

Json实现异步请求提交评论无需跳转其他页面【jquery】

web前端|js教程Json实现异步请求提交评论无需跳转其他页面【jquery】
Json,异步请求
web前端-js教程
主要将代码粘贴,通过阅读代码理解其中的相关逻辑。
商城系统源码 积分加现金,vscode前端展示插件,ubuntu安装sitl,tomcat配置步骤,sqlite为什么查不出,b站前端用的什么框架写的,爬虫爬取我国水域分布情况,php代码保护,沈阳seo团队团队,网站图片 相对路径,HTML在网页上盖章,在线考试系统模板下载lzw
html代码:
c ftp 源码,ubuntu语言软件,tomcat打开不成功,1024爬虫地址,php如何获取数组的值,seo万词霸屏能做多少个lzw
 

评论:

php 多级分销商城源码,vscode流程图教程,ubuntu 挂载 卸载,tomcat多目录访问,爬虫小说py,php 建立文件夹,河南seo推广多少钱,帝国网站调用视频内容,单页模板phplzw

姓名:

内容:

已有评论:
js代码:

$("#send").click(function () { $.get("doSave.ashx", {   //调用json插件 u_name: $("#username1").val(), //json数据/值对化 u_cont: $("#content").val() }, function (data) var uName = data.username; //注:此处的username与doSave.ashx中的dic.add("username",uname)中的username相对应的 var uCont = data.content; var txtHtml = "
" + uName + ":

" + uCont + "

" $("#resText").html(txtHtml); //将返回的数据添加到页面上 }, "json"); })
插件代码:

 using System; using System.Web; public class doSave : IHttpHandler { public void ProcessRequest(HttpContext context) { var dic = new System.Collections.Generic.Dictionary(); //存储的集合 string jsonStr = "{}"; //新建字符串jsonStr context.Response.ContentType = "text/json"; //定义返回的内容类型为json string uname = context.Request.QueryString[0]; //获取请求参数中第一个参数,也可以直接使用uname string commet = context.Request.QueryString[1]; //定义字符串uname、commet为context请求查询的字符串context.Request.Params["username"];QyertStrubg:查询字符串 dic.Add("username", uname); //将字符串添加到对象中 dic.Add("content", commet); jsonStr = Newtonsoft.Json.JsonConvert.SerializeObject(dic); //序列化集合为json字符串 context.Response.Write(jsonStr); } public bool IsReusable { get { return false; } } }
此处效果即为,在输入框中输入相关文字,点击提交,下方会自动将书写的文字进行展示,无需跳转其他页面。


Json实现异步请求提交评论无需跳转其他页面【jquery】
  • 实现PHP多线程异步请求的3种方法【PHP】
  • 实现PHP多线程异步请求的3种方法【PHP】 | 实现PHP多线程异步请求的3种方法【PHP】 ...

    Json实现异步请求提交评论无需跳转其他页面【jquery】
  • dojo学习第二天 ajax异步请求之绑定列表_dojo
  • dojo学习第二天 ajax异步请求之绑定列表_dojo | dojo学习第二天 ajax异步请求之绑定列表_dojo ...

    Json实现异步请求提交评论无需跳转其他页面【jquery】
  • Spring Boot两个异步请求办法详解
  • Spring Boot两个异步请求办法详解 | Spring Boot两个异步请求办法详解 ...