C#点击按钮输出⽂本框输⼊的内容个⼈学习所⽤
⽹页包含⼀个⽂本框,⼀个按钮。单击按钮可以在⽹页中输出⽂本框中输⼊的内容。
效果:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>html内容文本框
<script>
function change()
{
var ElementById("num").value;//读取⽂本框的值
}
</script>
</head>
<body>
请输⼊⼀个数值:<input type="text" id="num"/>
<input type="button" value="确定" onclick="change()">
<p id="put"></p>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。