我的问题很简单,如何用jquery ajax命令检索某个div
$.ajax({
url: "test.html",
success: function(){
$(this).addClass("done");
}
});
与加载一样
$('#targetDiv').load('http://localhost/test.html #sourceDiv');
答案 0 :(得分:21)
如果div是AJAX响应的一部分:
$.ajax({
url: 'test.html',
dataType: 'html',
success: function(html) {
var div = $('#sourceDiv', $(html)).addClass('done');
$('#targetDiv').html(div);
}
});
答案 1 :(得分:7)
这是一个略有不同的看法。此外,您的目标div可能默认隐藏,因此我添加了淡入淡出效果以显示它。如果您的html将要更改,那么您可能希望添加缓存:false。
$.ajax({
url: "html.htm",
type: "GET",
dataType: "html",
success: function (res) {
$("#targetDiv").html($(res).find("#sourceDiv")
.addClass('done'))
.fadeIn('slow');
}
});
如果您有兴趣,可以查看jQuery如何在此处执行加载方法jQuery Source Viewer
答案 2 :(得分:2)
以下是我在我的网站上用于导航的示例。
<ul id="nav">
<li><a name="portfolio" href="portfolio.php" class="ajax_nav">PORTFOLIO</a></li>
<li><a name="biography" href="biography.php" class="ajax_nav">BIOGRAPHY</a></li>
</ul>
对于javascript,你可以试试这个。
var hash = window.location.hash.substr(1);
var hash2 = window.location.hash.substr(1);
// Menu items to lower main content
var href = $('.ajax_nav').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-4)){
var toLoad = hash+'.html #ajax_content';
$('#ajax_content').load(toLoad)
}
});
// For inner overlay of featured content.
var href2 = $('.feat_item_link').each(function(){
var href2 = $(this).attr('href');
if(hash2==href2.substr(0,href.length-4)){
var toLoadFeatured = hash2+'.html #ajax_featured_content';
$('#ajax_featured_content').load(toLoadFeatured);
}
});
// For Bottom Navigation
$('#nav li a').click(function(){
var toLoad = $(this).attr('href')+' #ajax_content';
$('#content').hide('fast',loadContent);
$('#load').remove();
$('#wrapper').append('<span id="load">LOADING...</span>');
$('#load').fadeIn('normal');
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href'));
function loadContent() {
$('#content').delay(1000).load(toLoad,'',showNewContent());
}
function showNewContent() {
$('#content').show('normal',hideLoader());
}
function hideLoader() {
$('#load').delay(1000).fadeOut('normal');
}
return false;
});
#load的id只是在CSS中使用动画gif。
将javascript放在$(document).ready()中,你应该全部设置好。