このコードをまとめました...
<title>Style Change on Resize</title>
<script type="text/javascript">
function resize() {
if (screen.width <= 640)
{document.write("<link href='style1.css' rel='stylesheet' type='text/css'>")}
else
{document.write("<link href='style2.css' rel='stylesheet' type='text/css'>")}
}
</script>
</head>
<body onResize="resize();">
<div id="styleMe">This is a test of a resize javascirpt that will change its CSS sheet
when the browser window is resized, or when being viewed on a mobile device, such as
iOS, etc. Hello.</div>
</body>
</html>
そして、CSSファイルにはこれが含まれています(背景色が異なるため、CSSシートが変更されているかどうかを確認できます)...
#styleMe {
background-color:#309;
height:200px;
width:100%;
}
問題は、ページを実行すると単語にスタイルが設定されていないことです。次に、ページのサイズを変更すると、ページが真っ暗になります。何かアイデアはありますか?
ありがとう