我有一個問題,當點擊第一個id = addfriends它顯示(工作),但ID下面不工作。以下代碼。ID在同一個ID中似乎不會降低。 (jQuery)
好吧,我的錯碼。解決了。
$(document).ready(function(){
$(".addfriends").click(function(){
var ajax_load = "<img src='http://localhost/anime/asset/img/loading.gif' alt='loading...' />"
$('#result').html(ajax_load).load('http://localhost/anime/asset/html/add_friends.html #add-content-friends');
});
$(document).delegate(".close", 'click', function(){
$("#add-content-friends").remove();
});
});
<div id="result"></div>
loop
...
<tr><td><a id="addfriends" href="#add/<?php echo $comments['idusers']; ?>">Add friends</a></td></tr>
...
endloop
$(document).ready(function(){
$(document).on("#addfriends", 'click', function(){
var ajax_load = "<img src='...' alt='loading...' />"
$('#result').html(ajax_load).load('../add_friends.html #add-content-friends');
});
$(document).on(".close", 'click', function(){
$("#add-content-friends").remove();
});
});