0
我創建Ajax請求爲獲得按鈕的點擊數據:使用jQuery GET方法
$('document').ready(function(){
$('#gettype button').click(function(){
var y = $(this).val();
$.get("{{url('gettypes')}}",{id:y}, function(data){
$('#samp').empty();
$.each(data, function(index, element) {
$('#samp').append("<option value='"+ element.ty_id +"'>" + element.ty_name + "</option>");
});
});
});
});
我想在下拉菜單或表中獲取按鈕的點擊數據,我的路線是:
Route::get('gettypes',function(){
$catid = Request::get('id');
$typ = App\type::where('cat_id', $catid)->get();
return Response::make($typ);
});
和我的刀片是:
<table class="table">
<tr id="gettype">
@foreach($category as $val)
<th><button class="btn btn-primary" value="{{$val->cat_id}}">{{$val->cat_name}}</button></th>
@endforeach
</tr>
</table >
和
<select id="samp" class="form-control">
<option value=""></option>
</select>
我沒有得到它是不是在按鈕單擊工作,而它正在下拉改變事件,plz幫助正確wirking。感謝
考慮接受/關閉問題 – Froxz