📄 1.35 在页面中画点.htm
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -