参考JavaScript — resize事件监听窗口变化 //首先写一个获取窗口宽高的方法constgetWindowInfo= () => {constwindowInfo = {width:window.innerWidth,hight:window.innerHeight}console.log(windowInfo);//当页面宽度变小,则切换为卡牌视图if(windowInfo.width<768) { $('#table').bootstrapTable('toggleView'); ...