这是我一直在处理的代码。显然,由于某种原因首先执行了 #layout 调用,并且它给出了 undefined 作为值。
$(function() {
$(".left").load("PartsList.php", function() {
alert("success");
});
$(".right").load("Custom.php", function() {
alert("success");
});
$("#layout").children().on({
click: function() {
alert($(this).attr('id'));
}
});
});
感谢您的时间 :)。