<script type="text/javascript" src="select_css.js"> </script>
// select_css.js
// -------------
// select the appropriate stylesheet according to the user's screen resolution
document.write("<link rel='stylesheet' type='text/css' href='");
if (window.screen.height <= 600) {
//resolution is 800x600 or less
document.write("small.css'>");
} else {
document.write("large.css'>");
}
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛