-1
我想從你身邊的概念。其實我想在用戶滾動到內容的頂部時(一次又一次)追加一些文本。但是我想在用戶轉到頁面底部時刪除文本。 我在頂部和底部獲得了活動,並且可以預先設置該活動,但我想移除該內容(在文本「naveen」之前)。如何從div競爭中刪除競爭?
$("#content").scroll(function(){
if($(this).scrollTop() === 0){
//alert("top");
$("#contend").prepend("naveen")
}
});
$("#content").scroll(function() {
if ( document.documentElement.clientHeight +
$(document).scrollTop() >= document.body.offsetHeight)
{
// Display alert or whatever you want to do when you're
// at the bottom of the page.
//alert("You're at the bottom of the page.");
}
});
setInterval(function(){
$("#content").append("Random text to be appended here")
},2000);
我該怎麼辦呢?
感謝
你的英語是非常貧窮的,馬kes你的帖子很難理解。 –
你在哪裏'prepend','naveen'..無法找到? –
請檢查我的小提琴 – user2648752