您的位置:首页 > 其它

通过超链接提交表单

2010-08-09 11:08 190 查看
< script LANGUAGE = " JavaScript " >
2 function checkvalue()
3 {
4 if (document.welcomeform.nickname.value == "" )
5 {
6 alert( " 昵称不能为空! " );
7 return ( false );
8 }
9 if (document.welcomeform.password.value == "" )
10 {
11 alert( " 密码不能为空! " );
12 return ( false );
13 }
14 document.welcomeform.submit();
15 return ( true );
16 }
17 </ script >
18
19 < body >
20 < form name = " welcomeform " method = " post " action = " welcome.asp " >
21 < a href = " # " onclick = " javascript:checkvalue();return false: " > 登录 </ a >
22 </ form >
23 </ body >

第二种方法:

1<form name="welcomeform" method="post" action="welcome.asp">
2<input type=text>
3</form>
4<a href="javascript:welcomeform.submit();">提交</a>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: