How can I get the html5 video element's width

2019-01-24 03:15发布

I have a simple html5 video tag:

 <video autobuffer="true" id="video" controls="true">
        <source src="some_url"></scource>
  </video>

I have not define a obvious width and height in video tag or in css,the video wrapper would adjust according to the source video size,the problem is, how can I get the video current width and height? I have tried jquery

$('video').css('width');

but it return me the origin size :300px

what I see in the page is 800px!

How can I solve this problem?

2条回答
Emotional °昔
2楼-- · 2019-01-24 03:40

Just found out that we can get the video width and height as:

$("#video").innerHeight();
$("#video").innerWidth();

These two functions are exposed by jQuery.

Another reason why jQuery rocks!!!

查看更多
神经病院院长
3楼-- · 2019-01-24 03:42
$(function () {

    $("#video").bind("loadedmetadata", function () {
        var width = this.videoWidth;
        var height = this.videoHeight;
        // ...

    });

});
查看更多
登录 后发表回答