gpt4 book ai didi

javascript - 鼠标悬停时在 iframe 中显示源 html

转载 作者:行者123 更新时间:2023-12-03 10:50:25 25 4
gpt4 key购买 nike

我有一个数据库,其中一个字段包含网页的源 html。我有一个表格,显示了指向源 HTML 的 url。

<table>
<tr>
<td>This is a Td</td>
<td>This is a Td</td>
<td class="hover">URL1</td>
<td>This is a Td</td>
</tr>
<tr>
<td class="hover">URL1</td>
<td>This is a Td</td>
<td>This is a Td</td>
<td>This is a Td</td>
</tr>
</table>
<div class="stuff">
</div>

当我将鼠标悬停在表中的 url 上时,我想在 iframe 中显示关联的 db HTML。

基于:

http://jsbin.com/urarem/3/edit?html,css,output

这似乎完全符合我的要求,我有:

$(document).ready(function() {
$('.hover').on('mouseover', function() {
var html = '<a href="URL"></a><div class="box"><iframe src="URL" width = "500px" height = "500px"></iframe></div>';
$('.stuff').html(html);
});

假设我在鼠标悬停时将 html 源动态加载到变量“html”中,如何在上面的 Iframe 中显示它?

最佳答案

您只需获取valueinnerHTML(取决于原始HTML的布局方式),然后将其加载到src iframe 的。你可以这样做:

JS:

$('.hover').on('mouseover', function(e) {
var url = $(this).html();
$('.stuff').attr('src',url).show();
}).on('mouseleave', function(e) {
$('.stuff').hide().removeAttr('src');
});

HTML:

<table>
<tr>
<td>This is a Td</td>
<td>This is a Td</td>
<td class="hover">www.wikipedia.com</td>
<td>This is a Td</td>
</tr>
<tr>
<td class="hover">www.google.com</td>
<td>This is a Td</td>
<td>This is a Td</td>
<td>This is a Td</td>
</tr>
</table>
<iframe class="stuff">
</iframe>

JSFiddle示例。

关于javascript - 鼠标悬停时在 iframe 中显示源 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28441391/

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