嗨我試圖在html中設置按鈕屬性,當它被點擊,當它不是,當這些頁面不重新加載時,這些更改工作正常。 我想保留頁面重新加載後的按鈕屬性,o如果點擊了按鈕,然後頁面被重新加載,按鈕需要保持選中狀態。頁面重新加載後保持按鈕屬性
我做了在HTML這個例子來說明什麼,我已經得到了
<button id="btntext" class="k-button" onclick="clickEvent(this.id, 't2')" onmousemove="imgChange(this.id, 't2', 't')" onmouseout="imgChange(this.id, 't','t2')"><img id= "icon" class="k-image" alt="text" src="../images/t2.png" style="width: 30px; height: 30px; vertical-align:inherit" hspace="7"/>Text</button>
也有用戶點擊或鼠標移動(imgChange)的腳本巫變化IMG但它並不作品我需要。
第一次加載頁面時,可以將項目設置爲localStorage嗎? –
是的,你可以。在windows.onload函數中編寫localStorage.setItem(「key」,「val」) –
我已經在腳本函數中使用了localStorage,但是window.onload在那裏不起作用,它只對JS有效嗎? –