批改状态:未批改
老师批语:
function showModal() {
// 获取模态框元素
const modal = document.querySelector(‘.ylwTopSub’);
// 显示模态框
modal.style.display = 'block';
// 焦点自动置入第一个输入框email
// modal.querySelector('input:first-of-type').focus();
}
function closeModal() {
// 获取模态框元素
const modal = document.querySelector(‘.ylwTopSub’);
// 关闭模态框
modal.style.display = 'none';
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号