<link rel="stylesheet" type="text/css" >
function dis()
{
  if((screen.width == 1024) && (screen.height == 768))
  {
    document.getElementById('css').href = '2.css';
  }

  else if ((screen.width == 800) && (screen.height == 600))
  {
    document.getElementById('css').href = '1.css' ;
  }

  else
  {
    document.getElementById('css').href = '2.css';
  }
}

dis();

</script>

相关文章:

  • 2021-07-11
  • 2021-05-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-04
  • 2021-10-24
  • 2022-12-23
  • 2022-12-23
  • 2021-05-19
  • 2022-01-07
相关资源
相似解决方案