我的 jquery 有什么问题?我想根据屏幕大小使我的 div 更大,并且有很多很好的例子,但仍然没有成功。
var screenWidth = screen.width;
if (screenWidth < 1024) {
$(".gadgetblockLeft1").css("width","40%");
} else {
$(".gadgetblockLeft1").css("width","100%");
}
和CSS仍然: -
.gadget .gadgetblockLeft1 { padding:5px; background-color:#f4f4f4; border:1px solid #cfcfcf; font-family:Tahoma, Geneva, sans-serif; font-size:12px; text-align:right; direction:rtl; margin-left:5px; height:auto; float:left}
我需要将屏幕更改为 900 像素或小于 900 像素时,它将将此代码添加width:100%
到类中.gadgetblockLeft1