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.
サーバーの負荷を減らすことを考え始めています。このコードを使用して div をリロードすると、サーバーから完全なページが要求され、div のみが変更されますか? または、サーバーは div のみを送信しますか?
$(".reload a").click(function(event){ event.preventDefault(); var url = $(this).prop('href'); $("#test").load(url + " #test > *"); });