Ajaxからロードされたページでいくつかの関数を作成できますか?IE
$(function() {
$.ajax({
url: "loaded.php",
success: function(data) {
$("#content").html(data);
}
});
$("a#edit").click(function(e) {
e.preventDefault();
var newVal = $(this).closest("tr").find("#collapse").html();
$(this).html(newVal);
});
});
a#edit
とは両方とも#collapse
loaded.phpの要素であり、このコードはindex.phpページにあります...このコードは機能しますか?