标签:blog eth 体验 提交表单 other json data 表单 tps
$(‘#gridId‘).load(url, data, callback(data){});// data: JSONObject or String
可以在一个页面动态加载另一个页面(如动态加载JSP到指定的DIV)。
这个特性的应用场景是查询页面。传统的查询页面是:输入查询条件,点击“搜索”后,提交表单,把查询条件传输到后台,获取数据后,跳转到原页面,然后通过循环显示查询到的结果。这样的不足是:页面会闪动,体验不好。
The POST method is used if data is provided as an object; otherwise, GET is assumed.
参考:
https://api.jquery.com/load/
https://www.cnblogs.com/sharpest/p/7725526.html
标签:blog eth 体验 提交表单 other json data 表单 tps
原文地址:https://www.cnblogs.com/wangxinbo/p/11218955.html