获取节点
function $(id) {
var obj = document.querySelectorAll(id);
return obj.length > 1 ? obj : obj[0];
}
原文地址:https://www.cnblogs.com/City-wall/p/11611959.html
时间: 2025-01-03 04:04:26
获取节点
function $(id) {
var obj = document.querySelectorAll(id);
return obj.length > 1 ? obj : obj[0];
}
原文地址:https://www.cnblogs.com/City-wall/p/11611959.html