URLを入力できるテキスト入力要素を備えたWebページを作成し、ボタンを押すとそのURLからビデオの再生を開始したいと考えています。つまり、input からの URL を video タグのソースにしたいのです。
<!DOCTYPE html>
<html>
<head>
<script>
function write(){
document.write(document.getElementById('url').value);
}
</script>
</head>
<body>
<p>Enter the source of the video.</p>
<form id="frm1">
URL: <input id="url" type="text" name="fname"><br>
<input type="button" onclick="write()" value="Please Write the URL">
</form>
</body>
</html>