我希望 div 类“内容”的大小根据用户屏幕分辨率的大小而改变。
到目前为止,我已经写了这个 javascript
function resize()
{
if ((screen.width>1024)) { $(".content").style.width = 560 + "px"; $(".content").style.height = 315 + "px" }
if ((screen.width>1280)) { $(".content").style.width = 640 + "px"; $(".content").style.height = 360 + "px" }
else { $(".content").style.width = 853 + "px"; $(".content").style.height = 480 + "px" }
};
显然在html中我有类'.content'
为什么这段代码不起作用?