jQuery ready函数调用两次

前端之家收集整理的这篇文章主要介绍了jQuery ready函数调用两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我的html
<div id="projekt" style="position: relative; width: 90%;height:400px;"/>

 $("#projekt").ready(function() {

     .. do something with the div
 });

问题是ready函数调用两次。可能是什么原因 ?

解决方法

a bug which can cause this.尝试更新或绑定到文档而不是div。
原文链接:https://www.f2er.com/jquery/181975.html

猜你在找的jQuery相关文章