html代码问题,页面有一个按钮和一个文本框,我想点击按钮后文本框就=“点击了”。请问代码要怎么写?谢
基础代码如下,请修改:<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-T...
基础代码如下,请修改:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label for="001">textbox1</label>
<input type="text" name="001" id="001" />
button1
<input type="button" name="002" id="002" value="提交" />
</form>
</body>
</html> 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label for="001">textbox1</label>
<input type="text" name="001" id="001" />
button1
<input type="button" name="002" id="002" value="提交" />
</form>
</body>
</html> 展开
2个回答
2014-11-11
展开全部
<input type="button" name="002" id="002" value="提交" onclick="this.value='点击了'" />
追问
是要文本框的值=“点击了”
this.value的this要改成什么?谢谢
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询