我正在使用Telerik Radeditor,它是一个富文本区域,编辑器内容是一个iframe,如下所示:
<iframe frameborder="0"
src="javascript:'<html></html>';"
style="width: 100%; height: 100%; margin: 0px; padding: 0px;"
title="hello world"
id="contentIframe"></iframe>
我的目标是当用户鼠标悬停在iframe区域时显示"hello world"
工具提示。
你可以看到我把"title" attribute
但它没有出现。
为了模仿工具提示的行为,我尝试放置overlay div
和title
,但是由于overlay div
我失去了鼠标控制。
我也拼命尝试将标题放在iframe体内,但之后我不得不点击iframe内部来实现它,这不是解决方案。
var iframe_html = $(wrapper).find("iframe").contents().find("html");
$(iframe_html).prop("title", "hello my tooltip 1");
var iframe = $(wrapper).find('iframe');
$(iframe).prop("title", "hello my tooltip 2");
var iframebody = $(iframe).contents().find('body');
$(iframebody).prop("title", "hello my tooltip 3");
我正在使用没有Tooltip功能的jQuery UI 1.8.16
因此无法选择..
有谁能帮我弄清楚如何显示工具提示?
你可以为iframe分配一个标题,但是你无法在iframe中看到它。将frameborder改为“2”并将光标移动到它..你去了......标题出现......
要在iframe上查看标题,您必须设置iframe内容的标题,而不是iframe本身。
就像我在下面做的那样..
<iframe frameborder="0"
src="javascript:'<div id=\'hey\' title=\'Hello World\'>Helllo World</div>';"
style="width: 100%; height: 100%; margin: 0px; padding: 0px;position:relative;"
title="hello world"
id="contentIframe">
</iframe>
或者..使用jQuery
$(document).ready(function () {
$("#contentIframe").contents().find("body").attr('title','Hello World');
});
我刚刚在w3学校tooltip教程(TryIt编辑器here)中为div添加了一个iframe,它运行得很好。出乎我的意料。
<!DOCTYPE html>
<html>
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #994444;
color: #ffffff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
margin-left: -60px;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<body style="text-align:center;">
<h2>Proof of Concept</h2>
<p>This, cobbled from the W3 schools tutorial on CSS tooltips. I added an Iframe inside the div; one may still interact therewith, yet enjoy full tooltipitude.</p>
<p> So, move the mouse over the text below:</p>
<div class="tooltip">Hover over me
<span class="tooltiptext">Hello World</span>
<iframe height="600px" src="https://imgur.com/a/71J1gQZ" width="600px" ></iframe>
</div>
</body>
</html>
在这里看到它:
https://faustsstudy.blogspot.com/p/blog-page_14.html
但它需要支持数据URI。