正好有需要用的功能,可控制想要控制的畫面,
運用 java script,分享出來。
document.addEventListener('DOMContentLoaded', function() {
function setupToggleVisibility(checkboxId, showAreaClass) {
const checkbox = document.querySelector(checkboxId);
const showArea = document.querySelector(showAreaClass);
if (checkbox && showArea) {
showArea.style.display = checkbox.checked ? 'block' : 'none';
checkbox.addEventListener('change', function() {
showArea.style.display = this.checked ? 'block' : 'none';
});
}
}
/* 自己定義要控制的 checkbox form */
setupToggleVisibility('#menu_in_open_other', '.open_other_show');
});