使用 javascript 将 Quicktime 从链接加载到 div 时出现问题
我有一个左侧
(id = 'videopane') 和一个右侧
,其中包含可点击的项目列表。我正在尝试进行以下编程:单击右侧
中的一项,它将 Quicktime 影片加载到左侧
中。我正在使用 JQuery 媒体插件 生成所有嵌入代码。如果我只需将代码 输入到左侧 <代码>
。
当我尝试将此代码应用于右侧
列表中的一项时,它不起作用,尽管该代码对我来说似乎很好:<a href="#" onclick="document.getElementById('videopane').innerHTML='<a class="media" href="anthony-mandler/music-video/Rihanna_Only_Girl_Web.mov"></a>'">
对我做错了什么的任何见解?
I have a left <div>
(id = 'videopane') and a right <div>
containing a clickable list of items.
I am trying program this: You click on one of the items in the right <div>
, it loads the Quicktime movie into the left <div>
.
I am using the JQuery media plugin to generate all of the embed code. and it works if I simply input the code <a class="media" href="anthony-mandler/music-video/Rihanna_Only_Girl_Web.mov"></a>
into the left <div>
.
It does not work when I try to apply this code to one of the items in the list in the right <div>
, although the code seems fine to me:
<a href="#" onclick="document.getElementById('videopane').innerHTML='<a class="media" href="anthony-mandler/music-video/Rihanna_Only_Girl_Web.mov"></a>'">
Any insight into what I am doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的 jQuery 插件从链接的
href
获取电影源。所以你会这样做链接这个。单击时将会生成。
确保在包含 jQuery 和插件后添加此内容。
The jQuery plugin you are using is taking the movie source from the
href
of the link. So you would do it link this.This will generate when clicked.
Make sure to add this after you include jQuery and the plugin.
即时生成的 html 将无法立即工作,
请确保当您添加锚标记来运行插件功能时:
Javascript
html that is generated on the fly will not work, right away,
make sure that when you add the anchor tag to run the plug in function:
Javascript