1

我为我的内容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 代码:

<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>
4

2 回答 2

0

您正在完全通过 '#content' div 加载某些内容,因此当然“typeface-js” div 会消失(除非您加载它的内容也包含它)。你有看到?你打电话时

$('#content').load( ... )

那么<div>之前的一切都会消失。

于 2010-03-10T14:55:20.053 回答
0

.load 将清除目标容器元素的全部内容(即:“#content”)

<div id="content"> .... cleared ..... </div>

由于您的“typeface-js”元素包含在内容 div 中,因此在加载完成时它会被清除。

于 2010-03-10T15:03:31.977 回答