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.
我想使用 ajax 加载一些 HTML,然后将其作为<div>.
<div>
$('div').load('extra-stuff.php');将替换 div 的所有内容。appendTo()听起来很有希望,但现在最有效的 jQuery AJAX 函数是什么,它如何使用appendTo?
$('div').load('extra-stuff.php');
appendTo()
appendTo
试试jQuery.get()方法
jQuery.get()
$.get('extra-stuff.php', function(data){ $('div').append(data); });
您可以像这样使用负载附加:
jQuery('#AppendToMe').append( jQuery('<div>').load(...) );