我开始自学javascript。我想我会尝试制作一个在提供URL时嵌入YouTube视频的脚本。当我创建iframe元素,设置属性并将其作为子项附加到div时,任何人都可以帮助我理解我做错了什么吗?我正在使用JSFiddle,当我检查元素时,似乎没有标记添加到div中。谢谢!
编辑:这是我的jsfiddle链接:http://jsfiddle.net/86W8N/2/
<p>Click the button to call function</p>
YoutubeURL: <input id="url" type="text">
<button onclick="myFunction()">Try it</button>
<div id="video_div">
</div>
<script>
function myFunction() {
var urlValue = document.getElementById("url").value;
var videoID = urlValue.substring(urlValue.indexOf('=') + 1);
var video = document.createElement("iframe");
video.setAttribute(title, "Test");
video.setAttribute(width, "440");
video.setAttribute(height, "390");
video.setAttribute(src, "http://www.youtube.com/embed/" + videoID);
video.setAttribute(frameborder, "0");
var div_element = document.getElementById("video_div");
div_element.appendChild(video);
}
</script>
答案 0 :(得分:33)
您的代码将停止执行,并在
处抛出title is not defined
例外
video.setAttribute(title, "Test");
在setAttribute(title, ...)
中,您正在使用title
,就好像它是一个名为title的变量,但这不存在。您希望传递字符串值 "title"
:
video.setAttribute('title', 'Test');
......和其他属性相同......
自从你使用JSFiddle后还有一些提示:
答案 1 :(得分:5)
您需要用引号'
或双引号"
包装您的属性:
video.setAttribute('title', "Test");
video.setAttribute('width', "440");
video.setAttribute('height', "390");
video.setAttribute('src', "http://www.youtube.com/embed/" + videoID);
video.setAttribute('frameborder', "0");
<强> Fiddle Demo 强>