Home >Backend Development >PHP Tutorial >jquery实现ajax的问题请教?

jquery实现ajax的问题请教?

WBOY
WBOYOriginal
2016-06-23 14:17:04968browse

我一起使用的是jquery的load方法,好像还有个$.ajax方法,两个有什么区别?


回复讨论(解决方案)

load方法我记得会和某个对象关联起来。
如第一个div1.load() 之后,服务器端的结果就会自动的载入到div区块中去(不管服务器返回的事什么东西,都会强制load到div1中去)。

$.ajax,没有设置上面的机制。可以将服务端返回的数据拿到后,随意的处理。

我一起使用的是jquery的load方法,好像还有个$.ajax方法,两个有什么区别?
简单的说:load不能处理返回的数据,而$.ajax先可以处理再显示

load让你可以把div当iframe用,$.ajax就是向后台程序通信,并且返回结果

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn