1 Star 1 Fork 0

次果果/FileRemark

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
script.js 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
次果果 提交于 2024-10-18 14:09 . 更新
// 获取所有的可折叠文件夹图标
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);
});
});
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ciguoguo/file-remark.git
[email protected]:ciguoguo/file-remark.git
ciguoguo
file-remark
FileRemark
master

搜索帮助