HTML DOM Parameter 对象
JavaScript基础 2022-05-13 16:22:08小码哥的IT人生shichen
HTML DOM Parameter 对象
Parameter 对象
Parameter 对象表示 HTML <param>
元素。
访问 Parameter 对象
您可以通过使用 getElementById()
来访问 <param>
元素:
var x = document.getElementById("myParam");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 PARAM 元素</h3>
<object data="/i/horse.mp3">
<param id="myParam" name="autoplay" value="true">
</object>
<p>点击按钮来获得参数的名称。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("myParam").name;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Parameter 对象
您可以通过使用 document.createElement()
方法来创建 <param>
元素:
var x = document.createElement("PARAM");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 PARAM 元素</h3>
<p>点击按钮来创建包含内嵌音频文件的 OBJECT 和 PARAM 元素。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("OBJECT");
x.setAttribute("data", "/i/horse.mp3");
x.setAttribute("id", "myObject");
document.body.appendChild(x);
var y = document.createElement("PARAM");
y.setAttribute("name", "autoplay");
y.setAttribute("value", "true");
document.getElementById("myObject").appendChild(y);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Parameter 对象属性
属性 | 描述 |
---|---|
name | 设置或返回参数的 name 属性值。 |
value | 设置或返回参数的 value 属性值。 |
标准属性和事件
相关页面
HTML 参考手册:HTML <param> 标签