我有一份 j,在文件准备就绪时使用。 它最后附上“div.cool”现有各要素的“[hi]”文本。
然后,我有一份装上新内容的雅氏剂。 当用“div.cool”类添加新内容时,用jquery 写法随附。
在创造新内容时,我怎么办?
<>>Example:
<>光>:
<div class="container">
<div class="cool">some text.</div>
<div class="cool">some text.</div>
<div class="cool">some text.</div>
<div class="cool">some text.</div>
</div>
<a href="#_" onclick="loadmore();">ajax more</a>
www.un.org/Depts/DGACM/index_spanish.htm Javscript:
$(document).ready(function() {
$("div.cool").append("[hi]");
});
function loadmore () {
// this for loop represents the ajax dynamic content. it cannot be changed.
for (i=1;i<=4;i++) {
$("div.container").append( <div class="cool">some text.</div> );
}
// $("div.cool").append("[hi]"); adding this works but it appends existing elements
}
The AJAX (replaced with for loop in exapmle):
$.ajax({
url: http://url.com/file.php,
cache: false,
success: function(html){
$("div.container").html(html);
}
});