php两种按键处理事件
初学PHP,菜鸟一个,记录下学习过程遇到的问题..
点击按钮事件处理办法
一个form表单里两个按钮,一个处理form中的action事件,另一个则处理另珍上php事件
1.事例代码:
<html>
<head>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<script type=
"text/javascript"
>
function
aaa()
{
document.form.action=
"page2.php"
;
}
</script>
</head>
<body>
<form name=
"form"
method=
"post"
action=
"page1.php"
>
<input type=
"text"
name=
"name"
/>
<input type=
"submit"
name=
"check"
value=
"验证码"
onclick==
"aaa()"
/>
<input type=
"submit"
name=
"submit"
value=
"注册"
/>
</form>
</body>
</html>
2.事例代码
<html>
<head>
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
</head>
<body>
<form name=
"form"
method=
"post"
action=
"page1.php"
>
<input type=
"text"
name=
"name"
/>
<input type=
"submit"
name=
"check"
value=
"验证码"
onclick=
"javascript:this.form.action=‘page2.php‘;this.form.submit();"
/>
<input type=
"submit"
name=
"submit"
value=
"注册"
/>
</form>
</body>
</html>
本文出自 “dream” 博客,请务必保留此出处http://snbo520.blog.51cto.com/3069187/1410131
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。