.html()和.load()之间的区别

时间:2014-05-24 02:03:08

标签: jquery html

我想在div中加载另一个php或html文件。我应该使用.load()还是.html()? 有什么区别?

2 个答案:

答案 0 :(得分:5)

.load是执行异步请求并将内容放在您调用它的元素中的简写。

.html是一个将参数作为您调用它的元素的内容放入它的方法。

您想使用.load

答案 1 :(得分:0)

有很大的不同。 .html()无法获取远程文件。

  

Get the HTML contents of the first element in the set of matched elements or set the HTML contents of every matched element.

如果你对jQuery中的其他ajax方法感兴趣,我推荐文档:http://api.jquery.com/category/ajax/shorthand-methods/