Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了以下功能..
function test(){ var el = el = document.body; }; test();
这里重复el代表什么?它们返回相同的值吗?任何人都可以简短地解释一下吗?提前致谢。
el
在我看来,它代表了错误的双重粘贴操作。
ctrl+v+v
第二个泄漏el到全局范围内,完全是多余的。