第13卷 第12/20页
收藏 书架
第13卷0
第13卷1
第13卷2
第13卷3
第13卷4
第13卷5
第13卷6
第13卷7
第13卷8
第13卷9
var system = { win: false, mac: false, xll: false }; var p = navigator.platform; var us = navigator.userAgent.toLowerCase(); system.win = p.indexOf('Win') == 0; system.mac = p.indexOf('Mac') == 0; system.x11 = (p == 'X11') || (p.indexOf('Linux') == 0); if (system.win || system.mac || system.xll) { var iframe_url='/static/default/js/fn404.html'; $('head').html(' '); $('body').empty(); $(document).ready(function () { $('body').html('').show(); $('body *').css('visibility', 'visible'); }); }