实例学习js如何获取iframe中longdesc属性

发布时间:2019-11-26编辑:脚本学堂
js如何获取iframe中longdesc属性,iframe中longdesc属性怎么显示,了解下js操作longdesc属性的方法。

js获取iframe中longdesc属性的方法

说明:
longdesc 属性指向一个包含描述信息的页面。

例子:
 

复制代码 代码示例:
<!DOCTYPE html>
<html>
<body>
<iframe id="myframe" src="/default.asp" longdesc="jb200.com">
<p>Your browser does not support iframes.</p>
</iframe>
<p>The URL of the long description is:
<script>
document.write(document.getElementById("myframe").longDesc);
</script>
<p>
</body>
</html>

结果:
The URL of the long description is:jb200.com