我有這個控制桌面版本網站上的某些模式的CSS。根據URL在兩個不同的CSS定義之間切換
#modal, #purchModal, #travModal, #notesModal, #explainModal
{ position: fixed; z-index: 101; top: 10%; left: 25%;
width: 50%; background:#CEECF5; border-radius:15px;
}
如果URL包含「/移動/」我想有切換CSS代碼
z-index: 101; top: 5%; left: 5%; width: 95%;
background:#CEECF5; border-radius:15px;
究竟會是怎樣做到這一點的最好方法是什麼?我想像我會使用jQuery或JavaScript這裏
+1兩種不同方式 –