对于HTML中的img标记,我们有替代文本alt属性,当图像没有出现时,它会显示出来.我也尝试将标签与iframe一起使用.
<iframe src="www.abc.com" alt="Web site is not avaialable">
但是当给出src =“”时,替代文本不会出现.只是想知道我是否可以以任何其他方式实现替换文本,如果没有给出src?
解决方法
由于我的第一次尝试误解了你的问题,让我们试试这个:
<script> $(function () { $("iframe").not(":has([src])").each(function () { var ifrm = this; ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument; ifrm.document.open(); ifrm.document.write($(this).attr("alt")); ifrm.document.close(); }); }); </script>
这将读取任何iframe的“alt”标记值,其中没有src属性或带有空值的src属性,并将alt文本写入该iframe的正文中.
从Write elements into a child iframe using Javascript or jQuery开始协助