面试题答案
一键面试const targetElement = document.getElementById('targetElement');
if (targetElement) {
targetElement.style.position = 'absolute';
targetElement.style.left = '100px';
targetElement.style.top = '200px';
}
const targetElement = document.getElementById('targetElement');
if (targetElement) {
targetElement.style.position = 'absolute';
targetElement.style.left = '100px';
targetElement.style.top = '200px';
}