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.
我的 jQuery 脚本在为 div 位置设置动画时出现故障。当我在页面加载时单击链接时似乎会发生该错误。
当我在页面加载时单击链接时似乎会发生该错误
这是因为您正在使用该ready功能,并且该功能会在页面完成加载后立即执行。
ready
因此,如果您在页面仍在加载时单击某些内容,请记住该ready函数中的 JavaScript 尚未执行。
你不能总是重现它的原因很可能是因为页面将被第二次缓存,并且在页面完成加载之前你没有时间点击任何东西(因为它被缓存了),因此 js 代码会有单击时已经执行。