07 2021 档案
摘要:body{ -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ user-select: none;/*选中文字时避免出现蓝色背景*/ }
阅读全文
摘要:原因: mapper.xml 中的sql加上了分号。 <select id="search" resultType="***.Table"> select * from table; </select> 正常的分页查询语句为 : select * from table limit pageNum,p
阅读全文