我有一个 ajax 删除函数,但变量qid
没有在 url 中显示它的值。它只是显示它的名字。
编码:
$(function(){
$(".delete_question").click(function(){
var qid = 3;
$.ajax({
type: "GET",
url: "<?php echo base_url(); ?>index.php/backend/questions/delete/"+qid,
data: '',
success: function(data){
load_questions();
}
});
return false; //stop the actual form post !important!
});
});
我的浏览器显示的内容:
url: "http://localhost/cit/index.php/backend/questions/delete/"+qid,