我有这个代码。而且我想将id作为动态值添加到route的参数中。 但是我无法获取ID的值,我只能获取文本ID
我尝试以下代码:
any
我得到以下结果:
var id = $(this).data('studentid');
var br_id = "{{ route('dep', ['student_id' =>"+id+"])}}";
$.ajax({
url: br_id,
type: "GET",
success: function (data) {
$('.replace').html(data);
//alert('hello')
},
error: function (jQXHR, textStatus, errorThrown) {
console.log(jQXHR);
console.log(textStatus);
console.log(errorThrown);
}
}); //end Ajax
我想显示来自select的id为动态数据,我想将其放在route的此参数中。对此有什么解决方案?