0

私のhtmlページ

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><script src="js/jquery.js"></script>
<script>$(function(){
$("button:first").click(function(){
$("#aja").load("ajax.html");});
$("button:last").click(function(){
$("#aja").remove();});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<button>Load page</button><button id="rem">Remove ajax content</button>
<div id="aja"></div>
</body>
</html>

およびajax.htmlコード

<body>
<script>$(function(){
cool();});
function cool(){
$("button:last").after("Hello");
setTimeout("cool()",10000);}
</script>
</body>

これで、ajax.htmlをロードすると、cool()関数が実行され、最後のボタンにhelloが追加され続けます。問題は、2番目のボタンでajaxがロードされたコンテンツを削除すると、削除されたcool()関数が実行され続けることです。 ajaxコンテンツの削除後に停止するクールな機能

4

2 に答える 2

0

#ajaブロックの存在を確認すると、次のことが役立つ場合があります。

function cool() {
    if ($("#aja").length == 0) return;

    $("button:last").after("Hello");
    setTimeout("cool()", 10000);
}
于 2012-05-22T17:44:33.833 に答える
0

クリアタイムアウトを使用したい

http://www.w3schools.com/jsref/met_win_cleartimeout.asp

于 2012-05-22T17:45:38.550 に答える