$("#").on("click",function () {
$("#").load('', function () {
$(".").on("click",function(event) {
event.preventDefault();
var data = $(this);
$.ajax({
.........etc
我们可以在 jquery 的 .load 中使用 $.ajax 函数还是有更好的方法来处理这个?