在iFrame中隐藏工具提示

时间:2016-10-09 20:12:33

标签: javascript jquery html css iframe

我有2个文件。他们在这里:

网站-page.html中

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Test Layout</title>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
        <style type="text/css">
            body, html
            {
                margin: 0; padding: 0; height: 100%; overflow: hidden;
            }

            #content
            {
                position:absolute; left: 0; right: 0; bottom: 0; top: 0px; 
            }
        </style>
    </head>
    <body>
        <div id="content">
            <iframe width="100%" height="100%" frameborder="0" src="iframe.html" />
        </div>
    </body>
</html>

Iframe.html的

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>Test iFrame</title>
    </head>
    <body>
        <div id="content">
            <p>This is a test page.</p>
             <button type="button" title="Test Title Tag">Click Me!</button> 
        </div>
    </body>
</html>

如您所见,website-page.html包含iframe.html文件的iFrame。我可以编辑website-page.html文件,但我无法编辑iframe.html文件。

当我将鼠标悬停在按钮上时,会看到显示title的{​​{1}}属性弹出窗口。

可以在Test Title Tag页面添加哪些javascript,jquery或css代码来隐藏此属性,以便不弹出?我找到了几个jquery解决方案,但没有在通过iframe加载内容时似乎有效。

0 个答案:

没有答案