web问题 求好心人帮帮忙 5
写一个.html文件的网页代码,其中包含JavaScript代码。要求:有一个文本框和一个按钮,并且预览该网页时,在文本框输入内容后,点击按钮后,弹出一个对话框,对话框的...
写一个.html文件的网页代码,其中包含JavaScript代码。
要求:有一个文本框和一个按钮,并且预览该网页时,在文本框输入内容后,点击按钮后,弹出一个对话框,对话框的显示的内容是文本框中输入的内容 展开
要求:有一个文本框和一个按钮,并且预览该网页时,在文本框输入内容后,点击按钮后,弹出一个对话框,对话框的显示的内容是文本框中输入的内容 展开
2个回答
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
</head>
<script type="text/javascript">
function fun(){
var l = document.getElementById("login");
var p = document.getElementById("password");
alert("输入的账号是:"+l.value+"\t\n"+"输入的密码是:"+p.value);
}
</script>
<body>
账号: <input id="login" size=10 /><p />
密码: <input id="password" size=10 type="password"/><p />
<button onclick="fun()">提交</button>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
</head>
<script type="text/javascript">
function fun(){
var l = document.getElementById("login");
var p = document.getElementById("password");
alert("输入的账号是:"+l.value+"\t\n"+"输入的密码是:"+p.value);
}
</script>
<body>
账号: <input id="login" size=10 /><p />
密码: <input id="password" size=10 type="password"/><p />
<button onclick="fun()">提交</button>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询