背景:使用on做点击事件绑定,只有第一页可以正常使用,点击翻页时,绑定的事件无法使用
修改之前
$(".pingshen").on("click",function () {})
修改之后
$(document).on("click",".pingshen",function () {});