の div がありid="playerViewer"
ます。
この div のスタイルを変更したい場合は、次のようにします。
if (include(urlarr, listen)) {
//$('#playerViewer').css('position', 'fixed').css('top', '5px').css('right', '100px'); I Don't want to use Jquery
document.getElementById("playerViewer").style.position="fixed";
document.getElementById("playerViewer").style.top="5px";
document.getElementById("playerViewer").style.right="100px";
alert("No alert showing up, even though the function is true");
};
私のコンソールで私は得ました:
Uncaught TypeError: Cannot read property 'style' of null
だから私はgetElementById
間違った使い方をしていると思います-誰かが私を正しい方向に向けることができますか?
HTML:
<div id="playerViewer">
<div id="defaultVideocontainer">
<div id="defaultVideopart">
<video id='dago_video' class='jwplayer dago-video' width='480' height='360' controls ></video>
</div>
</div>
</div>