How do you display animated GIFs within a jQuery Dialog in IE?

后端 未结 4 1920
感情败类
感情败类 2020-12-10 22:50

We have the following code which seems to work just fine in every browser except IE:

var d = $(\'\');
d.dialog({modal:true});         


        
4条回答
  •  醉梦人生
    2020-12-10 23:46

    Perhaps performing the actions on a containment div (as opposed to the content itself) would do the trick. I've never had a problem displaying a a modal div with an animated gif.

    var d = $('
    '); d.dialog({modal:true});

提交回复
热议问题