0

我实现了一个脚本,它加载另一个页面而不刷新页面,一切都按预期工作。但是我有一个错误/问题:如果我尝试从“index.html”转到“about.html”页面(例如)并返回“index.html”,则索引页面上的 jquery 函数会隐藏标签之间的元素<p></p>停止工作:(任何人都知道为什么会发生这种情况以及最重要的如何解决它?

这是我的索引页:

<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>PAGE1!</title>
<script type="text/javascript" src="jquery.js"></script>
<style type="text/css">
@import url(css.css);
</style>
<script type="text/javascript" src="js.js"></script>

<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>​​​​​
    <div id="wrapper">
    <h1>Test</h1>
    <ul id="nav">
        <li><a href="index.html">welcome</a></li>
        <li><a href="about.html">about</a></li>
        <li><a href="portfolio.html">portfolio</a></li>
        <li><a href="contact.html">contact</a></li>
        <li><a href="terms.html">terms</a></li>
    </ul>
    <div id="content">
    <p>If you click on me, I will disappear.</p>
    <p>Click me away!</p>
    <p>Click me too!</p>
</div>

​​​​​&lt;/body></html>

这是关于页面:

<html>
<head>
<script src="jquery.js">
</script>
<script>
$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});
</script>
</head>
<body>  

<div id="content">
    <p>ABOUT HERE.</p>

</div>

</body>
</html>

这是我的 JS 代码,它在不刷新的情况下加载页面:

$(document).ready(function() {

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;

});

});

提前谢谢各位!

4

1 回答 1

1

发生这种情况的原因是因为 jQuery 函数不能立即使用新的 DOM 元素,因此您需要使用该on函数,假设您使用的是 jQuery > 1.7 的版本,如果不是,则需要使用该live函数。

代替

$(document).ready(function(){
  $("p").click(function(){
    $(this).hide();
  });
});

$(document).ready(function(){
  $("body").on("click", "p", function(){
    $(this).hide();
  });
});

或者,对于旧版本的 jQuery:

$(document).ready(function(){
    $("p").live("click", function(){
        $(this).hide();
    });
});

或者,您也可以将 p 隐藏函数放在现有loadContent函数中:

function loadContent() {
    $('#content').load(toLoad,'',showNewContent());

    $("p").click(function(){
        $(this).hide();
    });
}
于 2013-03-03T01:31:58.923 回答