我爲我的網站創建了一個header.php。 對於我的菜單,我創建了5個按鈕。 當我按下按鈕時,它會將頁面重定向到與之關聯的頁面上。 直到現在一切都很好。標題菜單中的按鈕php
我想要的是,在當前頁面上,與其關聯的頁面的按鈕更改爲其他顏色或背景圖像。
我不知道我們是否可以做到這一點,如果我自我解釋。
這裏我的header.php
<div id="main_menu">
<div id="menu_blog"><button onclick="location.href='blog.html'"><h1>Trucs/Astuces</h1></button></div>
<div id="menu_contact"><button onclick="location.href='/contact.php'"><h1>Contact</h1></button></div>
<div id="menu_soumission"><button onclick="location.href='/soumission.php'"><h1>Soumission</h1></button></div>
<div id="menu_realisation"><button onclick="location.href='/realisations.php'">
<h1>Réalisations</h1></button></div>
<div id="menu_service"><button onclick="location.href='/services.php'">
<h1>Services</h1></button></div>
<div id="menu_a_propos"><button onclick="location.href='/a_propos.php'"><h1>L'entreprise</h1></button></div>
</div>
? - 另外,你是否使用任何類似WordPress的東西 - 或只是直接的PHP? – sheriffderek