<div class="x"> ... </div>
if (!$(".x").length) { //在div x不存在的情况下,不能执行到这里 }
应改为getElementsByClassName,$获取的是Object,true条件恒成立
👍完美解决