点击按钮,在页面出现一个红点.htm
来自「javascript的功能特效。开发必备」· HTM 代码 · 共 17 行
HTM
17 行
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<script language="javascript">
function Paint(x,y,color)
{
document.write("<img border='0' style='position: absolute; left: "+(x+5)+
"; top: "+(y+5)+";background-color: "+color+"' width=4 height=4 />");
}
</script>
</head>
<body>
<span>
<input id="Button1" type="button" value="画点" onclick="Paint('50','20','red')" />
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?