编写一个HTML页面,当点击页面上的按钮时,取出页面上的一个文本输入框的内容显示出
3个回答
展开全部
<!DOCTYPE html>
<html>
<body>
<head>
<title>示例</title>
<meta name="viewport" content="initial-scale=1.0">
</head>
<input id="a"/>
<button onclick="listen()">点击获取当前内容</button>
<script>
function listen(){
{
{
alert("当前输入的内容:"+a.value);
}
}
}
</script>
</body>
</html>
<html>
<body>
<head>
<title>示例</title>
<meta name="viewport" content="initial-scale=1.0">
</head>
<input id="a"/>
<button onclick="listen()">点击获取当前内容</button>
<script>
function listen(){
{
{
alert("当前输入的内容:"+a.value);
}
}
}
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
function show()
{
alert(document.getElementById('t').value);
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="t" id="t" type="text"/>
</label>
<label>
<input type="button" name="Submit" value="显示" onclick="show()"/>
</label>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script>
function show()
{
alert(document.getElementById('t').value);
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input name="t" id="t" type="text"/>
</label>
<label>
<input type="button" name="Submit" value="显示" onclick="show()"/>
</label>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |