Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
总而言之,我知道有一种名为load的方法可以从 JQuery 中的页面加载动态内容。有没有其他方法可以做到?谢谢!
是的,您可以$.ajax() 用于异步调用。
$.ajax()
这些方法以更少的代码执行更常见的 AJAX 请求类型。
$.get()
$.getJSON()
$.getScript()
$.post()
您实际上指定了指向 JQuery 文档的链接。准确地说是“Ajax”类别->“速记函数”。如果你去那里,你会看到总共五个速记函数:
get()
getJSON()
getScript()
post()
load()
这些都是单核函数具体用途的简写JQuery.ajax(),也可以直接调用。
JQuery.ajax()
所以答案是:'Ajax 有六个功能,但实际上只有一个'。:)
见:http ://api.jquery.com/category/ajax/