html 编辑了一个表单,提交后 alert出不来
<head><basehref="<%=basePath%>"><title>JS单元格形式表单</title><scripttype="text/javascript"...
<head>
<base href="<%=basePath%>">
<title>JS单元格形式表单</title>
<script type="text/javascript">
function check(){
var get=document.getElementById("name").value;
alert(get);
}
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</script>
</head>
<body>
<form name="regform" action="" method="post">
<table width="397" height="225" border="2">
<tr>
<td colspan="2"><div align="center">用户注册</div></td>
</tr>
<tr>
<td width="73">姓名</td>
<td width="308"><input name="name" type="text" id="name"/></td>
</tr>
<td>年龄</td>
<td><input name="age" type="text" id="age"/></td>
</tr>
<tr>
<td>性别</td>
<td><input type="radio" name="radsex" value="man"/>男
<input type="radio" name="radsex" value="woman"/>女
</td>
</tr>
<tr>
<td>地址</td>
<td><textarea name="addr" cols="40" rows="4" id="addr"></textarea></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" name="sub" value="提交" onclick="check()"/>
</div></td>
</tr>
</table>
</form>
</body>
</html> 展开
<base href="<%=basePath%>">
<title>JS单元格形式表单</title>
<script type="text/javascript">
function check(){
var get=document.getElementById("name").value;
alert(get);
}
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</script>
</head>
<body>
<form name="regform" action="" method="post">
<table width="397" height="225" border="2">
<tr>
<td colspan="2"><div align="center">用户注册</div></td>
</tr>
<tr>
<td width="73">姓名</td>
<td width="308"><input name="name" type="text" id="name"/></td>
</tr>
<td>年龄</td>
<td><input name="age" type="text" id="age"/></td>
</tr>
<tr>
<td>性别</td>
<td><input type="radio" name="radsex" value="man"/>男
<input type="radio" name="radsex" value="woman"/>女
</td>
</tr>
<tr>
<td>地址</td>
<td><textarea name="addr" cols="40" rows="4" id="addr"></textarea></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input type="submit" name="sub" value="提交" onclick="check()"/>
</div></td>
</tr>
</table>
</form>
</body>
</html> 展开
5个回答
展开全部
你用了submit按钮,所以无法alert出来。把submit换成其他,a标签或者butoon,不过这样要再加上个提交事件。简单点的话可以把onclick改成onSubmit。
http://www.w3school.com.cn/jsref/event_onsubmit.asp?
http://www.w3school.com.cn/jsref/event_onsubmit.asp?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<form name="regform" action="" onsubmit="check();" method="post"> 表单这行,里面加个onsubmit方法,你的check方法都没调用,当然不能alert了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的input里面没有设置value这个属性啊,<input name="name" type="text" id="name" value=""/>
改成这样试试
改成这样试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-03-11
展开全部
<meta http-equiv.... 这些东西怎么放到 <script></script>里面了,楼主喝了吧
追问
额..我是新手,刚学了几天,请问 <meta http- 那些是什么呢?
追答
只是页面的参数配置,keywords、description..代表不同的作用。具体的百度一下就知道了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
onclick 改成onSubmit()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询