gpt4 book ai didi

javascript - 从链接 href 更改 iframe 源

转载 作者:行者123 更新时间:2023-11-28 15:57:47 25 4
gpt4 key购买 nike

我需要从 <a> 更改 iframe 源网址。 http://jsfiddle.net/YkKu3/

我的 HTML:

<a class='gotothis' href='http://puu.sh/666.png'>this Image</a>
<button type="button">Click Me!</button>
<iframe id="frameimg" src="" width="300" height="300">
</iframe>


$('button').click( function(event) {
var clicked = $(this);
$("#frameimg").attr("src", " .gotothis image is here, help '); // Here the problem
});

最佳答案

您使用双引号 "来打开字符串,但使用单引号 ' 来关闭它。可以使用两个双引号,也可以使用两个单引号。

$("#frameimg").attr("src", " .gotothis image is here, help "); // Here the problem

或者,如果您指的是要动态读取 gotothis uri,则应该从 gotothis 元素中读出 href 属性:

$("#frameimg").attr("src", $('.gotothis').attr('href')); // Here there is no problem

关于javascript - 从链接 href 更改 iframe 源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18040836/

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