我希望我的 javascript 获取用户输入的 url 并发送到源元素上的 src 属性,但它不起作用。请帮帮我?
这是我的脚本:
<input type="text" name="aniurl" size="60"><br>
<button class="btn" onclick="playVideo()" >button</button>
</div>
<video controls preload="auto" >
<source id="anir" type="video/mp4">
<script>
function playVideo(){
var aniurl = document.getElementsByName("aniurl")[0].value;
var ani2 = document.getElementById("anir")[0].value;
ani2.setAttribute("src",aniurl);
}
</script>