我需要添加類。全頁當屏幕尺寸爲> = 769px並刪除同一類時,屏幕尺寸爲< = 768 。我需要的類的DIV被應用到具有的ID #here我已經嘗試了不少東西,這是我離開......添加/刪除特定的div類基於屏幕大小
<script>
var windowSize = window.innerWidth;
if (windowSize >= 769) {
console.log('Greater than 768');
document.getElementById('here').addClass = 'full-page';}
else (windowSize <= 768) {
console.log('Less than 768');
document.getElementById('here').removeClass = 'full-page';}
</script>
任何有小費?提前致謝!
這裏您最好[使用媒體查詢](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries) –
P.S.控制檯日誌在開發工具中以適當的屏幕尺寸顯示,腳本不起作用。 – Furlong
如果您仍然想使用此代替媒體查詢,請查找[className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className)。你的'addClass = ...'沒有意義。 –