gpt4 book ai didi

javascript - JS + HTML,使用javascript获取src

转载 作者:行者123 更新时间:2023-11-30 18:41:14 24 4
gpt4 key购买 nike

假设我使用代码显示了一张图片:

<img src="image.png"/>

我想使用 javascript 定义 src,你会怎么做

<script>
function getImage ()
{
return "image.png";
}
</script>
<img src="Javascript:getImage()"/>

更新:

我需要它与 divx 播放器一起使用,通过 javascript 获取视频 url 参数

<object classid="clsid:*************" width="320" height="260" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab"> 
<param name="custommode" value="none" />
<param name="autoPlay" value="true" />
<param name="src" value="Javascript:GetURL()" />
<embed type="video/divx" src="Javascript:GetURL()" custommode="none" width="850" height="400" autoPlay="true" pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>

有人对此有什么想法吗?

最佳答案

你应该给你的标签单独的 ID,然后做

src = 'image.png';
document.getElementById('param1').setAttribute('value', src);
document.getElementById('embed1').setAttribute('src', src);

<param id="param1" name="src" value="Javascript:GetURL()" />
<embed id="embed1" type="video/divx" src="Javascript:GetURL()" custommode="none" width="850" height="400" autoPlay="true" pluginspage="http://go.divx.com/plugin/download/">

关于javascript - JS + HTML,使用javascript获取src,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6823365/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com