can't get true height/width of object in chrome

后端 未结 4 1337
囚心锁ツ
囚心锁ツ 2021-02-06 03:20

I have a question, if i set a image height in css and try to get height/width i get different results in different browsers. Is there a way to get the same dimension in all brow

4条回答
  •  逝去的感伤
    2021-02-06 04:05

    Replace

    $this.css({width: '', height: ''}); 
    

    with

    $this.css({width: 'auto', height: 'auto'});
    

    Opera 10.10 height/width 2008 x 3008

提交回复
热议问题