|
- const all = [...document.querySelectorAll(".aside-action---mcrK")].filter(item => item.getAttribute('href'));
- all.forEach(item => {
- item.addEventListener('click', (event) => {
- location.href = item.textContent === '健康度' ? `/builder/mcn/health?id=${new Date().getTime()}` : item.getAttribute('href');
- })
- })
复制代码 |
|