现在根据作者的site,我应该可以通过调用它来加载文件就可以了:
Videobox.open("your video page url","your caption","vidbox width height");
但我一直收到这个错误:
Uncaught TypeError: Cannot call method 'setStyles' of undefined
Videobox.positionvideobox.js:75
Videobox.openvideobox.js:55
(anonymous function)opcion2.html:13
这是在Chrome中进行测试
这是我的代码,这很简单,因为我正在测试这个功能:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link rel="stylesheet" href="css/videobox.css" type="text/css" media="screen" />
<script type="text/javascript" src="js/mootools.js"></script>
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript" src="js/videobox.js"></script>
<script language="javascript">
Videobox.open('http://www.youtube.com/watch?v=VhtIydTmOVU', 'Test', 'vidbox 979 416');
</script>
</head>
<body>
</body>
</html>
答案 0 :(得分:0)
你需要把它放在document.ready handler:
中$(function() {
Videobox.open("your video page url","your caption","vidbox width height");
});
或者只是将发出此调用的原始脚本部分移至body
作者的网站只是说:
您也可以使用javascript开始播放视频。
Videobox.open("your video page url","your caption","vidbox widht height");
他从未说过你可以在你的dom准备好之前调用它。