当我返回页面时,JQuery停止工作

时间:2013-03-03 01:24:00

标签: javascript jquery html

我实现了一个脚本,它加载另一个页面而不刷新页面,一切都按预期工作。但我有一个错误/问题:如果我尝试从“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>

​​​​​</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;

});

});

先谢谢你,伙计们!

1 个答案:

答案 0 :(得分:1)

它发生的原因是因为jQuery函数不能使用新的DOM元素,所以你需要使用on函数,假设你使用的是jQuery版本&gt; 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();
    });
}