代码拉取完成,页面将自动刷新
// 获取所有的可折叠文件夹图标
document.querySelectorAll('.toggle').forEach(toggle => {
toggle.addEventListener('click', function() {
const parentLi = this.parentElement.parentElement;
const childUl = parentLi.querySelector('ul');
if (childUl) {
if (childUl.style.display === 'none' || childUl.style.display === '') {
childUl.style.display = 'block';
this.textContent = '[-]';
} else {
childUl.style.display = 'none';
this.textContent = '[+]';
}
}
});
});
// 点击文件夹名称展开/折叠目录
document.querySelectorAll('.folder-name').forEach(folderName => {
folderName.addEventListener('click', function() {
const parentLi = this.closest('li');
const childUl = parentLi.querySelector('ul');
const toggle = parentLi.querySelector('.toggle');
if (childUl) {
if (childUl.style.display === 'none' || childUl.style.display === '') {
childUl.style.display = 'block';
toggle.textContent = '[-]';
} else {
childUl.style.display = 'none';
toggle.textContent = '[+]';
}
}
});
});
// 获取所有备注输入框并添加事件监听
document.querySelectorAll('.note-input').forEach(input => {
input.addEventListener('blur', function() {
const form = this.closest('.note-form');
const path = form.dataset.path;
const note = this.value;
// 使用 Fetch API 实时保存备注
fetch('save_note.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ filename: path, note: note })
})
.then(response => response.json())
.then(data => {
console.log('保存成功:', data);
})
.catch(error => {
console.error('保存失败:', error);
});
});
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。