好吧,标题可能听起来很简单,但我想要的是从浏览器地址栏做同样的事情(我的页面包含很多视频)。我试过了
javascript:videoelement=document.getElementById("vid1");videoelement.pause();
无论如何它都不起作用。
假设我的代码是
<html>
<body>
<embed src="https://myaudio.mp3" autoplay="false" height="100" width="300">
</body>
</html>
如何暂停/播放播放器?
javascript:document.getElementsByTagName("embed").pause();
^^^ 不工作