div里显示超链接 ajax,呼叫外部页面&使用AJAX / Jquery将动态内容加载到DIV中...

本文介绍如何使用jQuery的$.fn.ajax方法配合history.pushState实现在现代浏览器中管理网页的历史状态,包括点击链接平滑跳转和popstate事件监听。核心代码展示了动态加载内容并保持页面历史记录的技巧。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

主要script.js

$(document).ready(function(){

$('.ajax').ajax();

});

$.fn.ajax = function(){

$(function(){

if (Modernizr.history){

$("#wrapper").on("click", ".ajax", function(){

var loadLink = $(this).attr("href");

history.pushState(null, null, loadLink);

loadContent(loadLink);

return false;

});

function loadContent(href){

$('#load-here').fadeOut(50, function(){

$('#loader').show();

$(this).load(href + " #load-here ", { func: "getNameAndTime" }, function(){

$('#loader').hide();

$('#load-here').fadeIn(50);

console.log(href);

});

});

}

$(window).bind("popstate", function(){

loadLink = location.pathname.replace(/^.*[\\\/]/, '');

loadContent(loadLink);

});

}

});

}

和index.html代码:

Demos

"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值