17-5.htm
来自「php 和 ajax 开发的一些资料」· HTM 代码 · 共 32 行
HTM
32 行
<html>
<head>
<title>
使用DOM动态编辑页面——为元素添加属性
</title>
<script language="javascript">
function f1()
{
obj=document.getElementById("title");
obj.setAttribute("size","5");
obj.setAttribute("color","#ff0000");
}
function f2()
{
obj=document.getElementsByTagName("img");
obj[0].setAttribute("src","1.png");
obj[0].setAttribute("border","1");
obj[0].setAttribute("width","260");
obj[0].setAttribute("height","260");
}
</script>
</head>
<body>
<font id="title">使用DOM,访问元素属性</font>
<p>
<img>
<p>
<input type="button" value="为文本添加属性" onclick="f1()">
<input type="button" value="为图像添加属性" onclick="f2()">
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?