我有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加载内容时似乎有效。