您在關於使用在this SO answer中演示的數據加載的評論中問了一句,我的答案是肯定的。還有其他方法可以解決這個問題,但現在的瀏覽器現在幾天都是最簡單的方法來完成你想要做的事情。
假設你不需要切換區分,如果你可以將多個切換在以後的頁面上意味着你希望他們所有的切換,你可以做這樣的事情:
<!-- You will just grab this by its name -->
<input type="checkbox" ... data-name-you-want-here=""/>
如果您需要一個可行的辦法在未來區分這些,你可以使用這種方法:
<!-- Add the unique ID you already have as the value -->
<input type="checkbox" ... data-name-you-want-here="<?php echo $_item->getId() ?>"/>
現在你只需要弄清楚你將如何調用這個代碼,並觸發切換。如果你需要向後兼容,你可以使用jQuery,但真的我認爲你可以使用vanilla JavaScript和querySelector() 或querySelectorAll()。如果你知道只有一個頁面使用的數據選擇:
var element = document.querySelector('name-you-used-here');
/* Now you have the element in JavaScript so toggle it */
與此同時,如果你有多個然後使用:所以在香草的JavaScript pseudocode
var element = document.querySelectorAll('name-you-used-here');
/* Now you have the element in JavaScript, loop and toggle accordingly */
這就是我看待它的工作。該功能只會通過將呼叫你的頁面的頁腳或在某種文件準備功能添加到它的調用被稱爲:
function doToggle(){
var elem = [Do Query Selector Here]
...Your toggle code here.
elem.id <--- If you need to pull out the ID
...loop and use your toggle code if you used querySelectorAll
}
沒有'的複選框onload'事件...... – Rayon
有'
'元素上的'onload'事件是你打算使用的嗎?雖然如果功能是「默認顯示並點擊切換」,那麼你不應該使用任何'onload'事件。只需要將頁面狀態(樣式)初始化爲您想要的狀態即可。 – David我可以使用這裏的數據加載嗎? http://stackoverflow.com/questions/3708850/is-there-an-onload-event-for-input-elements – camdixon