tu7.12.htm
来自「一部非常好的javaScript教程」· HTM 代码 · 共 25 行
HTM
25 行
<HTML>
<HEAD>
<TITLE>image 对象属性示例</TITLE>
</HEAD>
<BODY>
<DIV align=center>
<IMG name=MMPic src=.../images/MM.jpg border=2 width=120 height=80 lowsrc=./images/lowsrc.gif>
</DIV>
<P><HR width=50%>以上图片的属性值如下:<P>
<SCRIPT LANGUAGE = JavaScript TYPE="text/javascript">
<!--
document.write("<B>border = "+document.images[0].border+"</B><BR>")
document.write("<B>complete = "+document.images[0].complete+"</B><BR>")
document.write("<B>height = "+document.images[0].height+"</B><BR>")
document.write("<B>hspace = "+document.images[0].hspace+"</B><BR>")
document.write("<B>lowsrc = "+document.images[0].lowsrc+"</B><BR>")
document.write("<B>name = "+document.images[0].name+"</B><BR>")
document.write("<B>src = "+document.images[0].src+"</B><BR>")
document.write("<B>vspace = "+document.images[0].vspace+"</B><BR>")
document.write("<B>width = "+document.images[0].width+"</B>")
//-->
</SCRIPT>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?