2018-03-06 09:55:48 +08:00
|
|
|
@section('scripts')
|
2020-02-02 02:05:56 +08:00
|
|
|
<script>
|
|
|
|
$(document).ready(() => {
|
|
|
|
const select_id = "select#month_select";
|
|
|
|
$(select_id).change((e) => {
|
2018-03-06 09:55:48 +08:00
|
|
|
const date = $(select_id + " option:selected").val();
|
|
|
|
const location = window.location.toString().split('?')[0];
|
2020-02-02 02:05:56 +08:00
|
|
|
window.location = location + '?month=' + date;
|
|
|
|
});
|
2018-03-06 09:55:48 +08:00
|
|
|
});
|
2020-02-02 02:05:56 +08:00
|
|
|
</script>
|
2018-03-06 09:55:48 +08:00
|
|
|
@endsection
|