在我的代码中我可以提醒(edu_id)。但我无法在我的控制器中发布值,并且系统警报 Undefind After alert(edu_id)。怎么修 ?感谢
$(document).ready(function() {
$(".edit-edu").click(function(event) {
event.preventDefault();
var edu_id =$(this).data("id");
alert(edu_id);
$.ajax({
type: 'POST',
url: "<?php echo base_url(); ?>/index.php/member/editEducation",
data : ({edu_id : edu_id}),
dataType: 'html',
cache: false,
success:function(html){
$("#edu-id-form").html(html);
}
});
});
})