本文介绍了jQuery ready函数被调用两次的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的html

<div id="projekt" style="position: relative; width: 90%;height:400px;"/>

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

     .. do something with the div
 });

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

The problem is the ready function is called twice. What could be the reason ?

推荐答案

可能导致此错误的错误.尝试更新或绑定到文档而不是div.

There's a bug which can cause this. Try updating or binding to the document instead of the div.

这篇关于jQuery ready函数被调用两次的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 03:32