注:需引入JQuery
前台 <script type="text/javascript"> $(function () { $(".y li a span").on("click", function () { var year_name = $(this).html() $.ajax({ url: "ajaxType", dataType: "json", async: true, data: { year_name : year_name }, type: "POST", }).done(function (data) { var _data=eval(data) $("#listmain").html("") $.each(_data,function(i){ $("#listmain").append(` <li class="picture lf"> <a href="{:url('eng/index/meet_detail')}?id=${_data[i].id}"> <img src="__STATIC__/uploads/${_data[i].img}" alt=""/> </a> </li> `) // console.log(data) }) }) }) }) </script> ``` 控制器: $year_name=request()->post('year_name'); $list=Db::table('table')->where('year_name',$year_name)->select(); $list=json_encode($list); return $list;