クライアント側の JS に次のコードがあります。
$(function() {
$("#player1").html(
'<video width=' + width + ' height=' + height + ' autoplay>' +
'<source src=' + curPlayListHrefs[0] + ' type="video/youtube"></source>' +
'</video>'
);
});
私は試した:
var video = document.getElementsByTagName("video")[0];
video.videoHeight = 300;
video.videoWidth = 700;
ビデオタグの幅/高さを変更することはできますか?