⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 1.35 在页面中画点.htm

📁 一些javascript的小例子希望对初学者有更好的帮助
💻 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 + -