我刚刚完成了线框图,需要动态更改页面的主要部分,这是div class =" container"页面的切片部分代表将注入index.html的其他内容
请参阅图片:http://i.stack.imgur.com/IYiTn.jpg
当点击上面的链接时,需要与其他.html动态交换RED部分。并且蓝色的静态部分会停留。
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body {
padding-top: 5%;
}
</style>
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" type="text/css" href="dist/css/slider-pro.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="css/examples.css" media="screen"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="libs/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="dist/js/jquery.sliderPro.min.js"></script>
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><big>Chris Kalmar</big> <small>portfolio</small></a>
</div>
</div>
</nav>
<div class"container-fluid">
<div class"row">
<div class"col-xs-6">
<ul>
<li class="branding"><a href="#brand">Branding</a></li>
<li class="3d"><a href="#3d">3D</a></li>
<li class="Apps"><a href="#app">Apps</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<!-- ajax call-->
<!-- /ajax call-->
</div><!-- / container-->
<footer>
<p>Chris Kalmar - All rights reserved 2015</p>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
<script>
$(document).ready(function(){
var router = {
"#brand" : "http://www.chriskalmar.com/branding.html",
"#3d" : "http://www.chriskalmar.com/3d.html",
};
$(window).on("hashchange", function(){
var route = router[location.hash];
if (route === undefined) {
return;
}
else {
$(".container").load( "" + route + " #content" );
}
});
});
</script>
</body>
</html>
答案 0 :(得分:2)
通常,我所做的是创建一个路由处理程序,其中包含映射到url的url哈希值。这样,当我监听窗口hashchange事件时,我可以路由到该哈希的相应url。对象看起来像这样:
var router = {
"#ajax" : "http://fiddle.jshell.net"
};
然后我使用此对象异步获取来自url的html,使用路由器和jquery get请求(在hashchange上):
$(window).on("hashchange", function(){
var route = router[location.hash];
if (typeof route === 'undefined') return;
$.get( route, function( data ) {
$( ".sliderContent" ).html( data );
});
});
从jquery get的回调中可以看出,检索到的ajax数据被注入到sliderContent div中的DOM中。我希望这会有所帮助:)
请在此处查看工作jsfiddle:http://jsfiddle.net/zrLLhq30/5/
编辑:AJAX需要一点时间来处理,所以给它加载一点时间。
<强>更新强>
我已经更新了我的小提琴以包含多个链接(以及用jquery get
替换jquery load
,只是为了加速资源检索),正如您所看到的, div内的内容在没有页面刷新的情况下加载到容器中。
如果您按照我的方式实现解决方案,为每个资源URL使用不同的哈希值,那么它应该很有效。我希望这就是你的意思:)。
在此处更新了jsfiddle:http://jsfiddle.net/zrLLhq30/7/
答案 1 :(得分:0)
由于缺少右括号,此错误Uncaught SyntaxError: Unexpected end of input
可能会发生。因此,在您的jquery单击函数中,将缺少外部右括号。我检查了你的代码,是的,你错过了关闭paranthesis。
这个错误相关的答案也在这里:JavaScript error (Uncaught SyntaxError: Unexpected end of input)
$(function () { $(".branding").click(function () {
$.ajax({
url: 'branding.html',
data: { id: $(this).attr('id') },
cache: false,
success: function (data) {
$(".container").replaceWith(data); //try with double qoutes
}
});
});
});//this is the missing paranthesis
$(function () { $(".3d").click(function () {
$.ajax({
url: '3d.html',
data: { id: $(this).attr('id') },
cache: false,
success: function (data) {
$(".container").replaceWith(data); //try with double qoutes
}
});
});
});//this is the missing paranthesis