<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>index page</title>
<script type="text/javascript">
function setValue() {
document.forms[0].userName.value = "user";
}
</script>
</head>
<body>
<form action="" id="form">
<table>
<tr>
<td>用户名</td>
<td><input type="text" value="please input values" name="userName" />
</td>
<td><input type="button" value="reset" onclick="setValue();" /></td>
</tr>
</table>
</form>
</body>
</html>
forms process
最新推荐文章于 2025-04-18 20:59:31 发布
本文提供了一个简单的HTML表单示例,包括按钮点击事件来设置表单字段的默认值。此示例使用了纯HTML和JavaScript实现,适用于初学者了解基本的网页交互逻辑。
1087

被折叠的 条评论
为什么被折叠?



