...问题总结...
有效的例子
例如,标题属性在图像上效果很好
<img
src="http://imgs.xkcd.com/comics/the_general_problem.png"
title="I find that when someone's taking time to do something right in the present, they're a perfectionist with no ability to prioritize, whereas when someone took time to do something right in the past, they're a master artisan of great foresight."
alt="The General Problem"
>
问题(不起作用的示例)
我正在尝试嵌入iframe 视频,例如当您在 YouTube 或(在这种情况下)SouthPark Studios 上单击“分享此视频”时
似乎要么:
- 我不知道与 iframe元素一起使用的正确属性(它显然不是“标题”),或者
- “标题”是正确的,但 iframe 以某种分层问题胜过它。见下文
...进一步阅读:我已经尝试过的详细信息...
第一次尝试:将它包裹在一个 div 中,并给 div max 层
<div
title="South Park video about Ginger Kids coming in the night to carry off the town's other kids"
style="z-index: 2;"
>
<iframe
src="http://media.mtvnservices.com/embed/mgid:arc:video:southparkstudios.com:1feaa96c-ed01-11e0-aca6-0026b9414f30"
width="360"
height="293"
frameborder="0"
>
</iframe>
</div>
来源:
https://stackoverflow.com/a/7117107/1421642,对于 div
http://www.echocho.com/csslayers.htm,对于层(z-index)
第二次尝试:只需将“标题”放入 iframe 标记
<iframe
title="South Park video about Ginger Kids coming in the night to carry off the town's other kids"
src="http://media.mtvnservices.com/embed/mgid:arc:video:southparkstudios.com:1feaa96c-ed01-11e0-aca6-0026b9414f30"
width="360"
height="293"
frameborder="0"
>
</iframe>
两次尝试的结果
在这两种情况下,我将鼠标悬停在 iframe 上,但没有任何反应。将其与我一开始的“有效示例”代码进行比较,您可以将鼠标悬停在上面并看到一个漂亮的小弹出窗口
请帮忙 :)