实现layui中每次切换页面时刷新页面(tab页面)
- 在html中找到
tabChange
方法,加上下面这部分代码即可实现每次切换tab页面时刷新页面(重新载入)
tabChange: function (id) {//切换到指定Tab项element.tabChange('demo', id); //根据传入的id传入到指定的tab项//每次切换tab页面时刷新页面var othis = $('.layui-tab-title').find('>li[lay-id="' + id + '"]'),index = othis.parent().children('li').index(othis),parents = othis.parents('.layui-tab').eq(0),item = parents.children('.layui-tab-content').children('.layui-tab-item'),src = item.eq(index).find('iframe').attr("src");item.eq(index).find('iframe').attr("src", src);