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); });