我在頁面上有四個按鈕,當我點擊其中的一個時,我希望它被突出顯示。如何點擊html頁面時突出顯示按鈕?
這些按鈕用於將數據傳遞給控制器。 他們是這樣的:
<button name="region" id="region" type="button" onclick="window.location='/project/Viewdata/index/region/1'" class="current">ALL</button>
<button name="region" id="region2" type="button" onclick="window.location='/project/Viewdata/index/region/2'" class="current">1st</button>
不能有兩個具有相同ID的元素! – bfavaretto
按鈕具有重定向代碼。點擊後他們不會重定向嗎? – user1
是的,這是我面臨的問題,因爲重定向選項其加載基本設置 – user2595861