我为内容 div制作了一个jQuery加载器。但是它不再显示我的div class="typeface"
。这意味着我不能使用不同的字体。内容div的其余部分正常工作。任何人都可以帮助我吗?
Javascript代码:(对于元素)
$(document).ready(function() {
// Check for hash value in URL
var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-5)){
var toLoad = hash+'.html #content';
$('#content').load(toLoad)
}
});
$('#nav li a').click(function(){
var toLoad = $(this).attr('href')+' #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').length-5);
function loadContent() {
$('#content').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#content').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;
});
});
HTML code:
<body>
<div id="wrapper">
<ul id="nav">
<li><a href="index.html">welcome</a></li>
</ul>
<div id="content">
<div class="typeface-js" style="font-family: Helvetiker; color:#0182a8; font-size:25px; margin-bottom:10px;">Mauris ac eros. Donec quis lacus Header text.
</div>
Morbi gravida posuere est. Fusce id augue. More content text.
</div>
</div>
答案 0 :(得分:0)
你正在'#content'div上完全加载一些东西,所以“typeface-js”div当然会消失(除非你加载它的东西也包含它)。你有看到?当你打电话
$('#content').load( ... )
然后<div>
中的任何内容都会消失。
答案 1 :(得分:0)
.load将清除目标容器元素的全部内容(即:“#content”)
<div id="content"> .... cleared ..... </div>
因为你的“typeface-js”元素包含在内容div中,所以当你的加载完成时它会被清除。