这是我的问题:
我有 video.js,我总是用 .HTML 文件和 Iframe 嵌入视频。
结构和往常一样,除了一件事,那就是视频的文件名。
如果我必须是一个程序,有一个输入区域,我可以在其中粘贴视频网址,还有一个按钮,我可以在其中生成 HTML 文件,那就太好了。
答案1
因此,你可以创建一个带有如下变量的 JavaScript 函数:
<script>
function myFunction()
{
var bla= document.getElementById("inputhere").value;
document.getElementById("area").value = '<iframe width="640" height="390" src="'+bla+'" frameborder="0"></iframe>';
}
</script>
<body>
<p>Enter an URL</p>
<input id='inputhere'/>
<button onclick="myFunction()">Create html</button><br />
<textarea id='area' style='width:400px;height:100px;'></textarea>
<p id="demo"></p>
</body>
</html>