📄 you are welcome.htm
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>you are welcome</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312" />
<script type="text/javascript" language="javascript">
<!--
function sayhello(){
var theirname=document.myForm.username.value;
if(theirname!="")
document.myForm.theResponse.value="欢迎 "+theirname+" 光临";
else
document.myForm.theResponse.value="姓名不能为空,请重新输入!";
}
//-->
</script>
</head>
<body>
<form name="myForm" id="myForm" action="#" method="get">
<b>请输入你的姓名:</b>
<input type="text" name="username" id="username" size="30" />
<br />
<br />
<b>问候信息:</b>
<br />
<input type="text" name="theResponse" id="theResponse" size="40" value="请输入你的姓名:"/><br />
<br />
<input type="button" value="确定" onclick="sayhello();" />
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -