jQuery load()

Posted wangxinbo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery load()相关的知识,希望对你有一定的参考价值。

$(‘#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

以上是关于jQuery load()的主要内容,如果未能解决你的问题,请参考以下文章

jquery通过load获取文件的内容并跳到锚点的方法

jQuery .load() 不工作

jQuery.load()事件使用方法详解

jQuery .load() 等效 AngularJS

怎么解决jquery 中 load 事件重复载入js的问题?

jQuery学习— jQuery的ready事件和原生JS的load事件的区别