HTML DOM Embed 对象
JavaScript基础 2022-05-13 16:17:49小码哥的IT人生shichen
HTML DOM Embed 对象
Embed 对象
Embed 对象是 HTML5 中的新对象。
Embed 对象表示 HTML <embed> 元素。
访问 Embed 对象
您可以通过使用 getElementById() 来访问 <embed> 元素:
var x = document.getElementById("myEmbed");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 Embed 元素</h3>
<embed id="myEmbed" src="/i/helloworld.swf">
<p>点击按钮来获得内嵌 flash 文件的 URL。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myEmbed").src;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Embed 对象
您可以通过使用 document.createElement() 方法来创建 <embed> 元素:
var x = document.createElement("EMBED");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 Embed 元素</h3>
<p>点击按钮来创建含有内嵌 flash 动画的 EMBED 元素。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("EMBED");
x.setAttribute("src", "/i/helloworld.swf");
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Embed 对象属性
属性 | 描述 |
---|---|
height | 设置或返回 embed 元素中 height 属性的值。 |
src | 设置或返回 embed 元素中 src 属性的值。 |
type | 设置或返回 embed 元素中 type 属性的值。 |
width | 设置或返回 embed 元素中 width 属性的值。 |