各位高手们!!!<input type="submit" value="注册" />怎样点击注册跳转到html页面,谢谢啦

如题所述

第1个回答  2011-01-24
<form method="post" action="login.html" > 此处的login.html就是你所要跳转到的html页面
<input type="submit" value="注册" />
</form>
第2个回答  2011-01-27
在<body>标签后添加
<form id="form1" name="form1" method="post" action="xxx.html"> xxx.html就是你要跳转的html页面,
........ <!-- 你的页面代码 -->
</form>
</body>本回答被网友采纳

页面禁止击键代码
1. 打开要加密的网页,复制出HTML源代码,然后打开“世纪鸟网页加密精灵”软件,选择“网页登录密码”选项,这时在右边就会出现一些输入框内的代码说明(如图5)。 图5 2. 在“请输入登录密码”的输入框中输入长度小于10位的密码,然后单击“生成并复制密码页面程序”按钮,这时软件会自动在下方的javascript代码中加入你输...

php 中如何实现跳转到一个新的页面
方法二:使用header函数 header函数是php内置函数中的HTTP相关函数之一,该函数送出HTTP协议标头到浏览器。使用它可以重定向URL,即令页面转向其他指定的网页。以下例子,执行后将自动打开www.baidu.com:header("Location: http:\/\/www.baidu.com");必须注意,header函数只能用在页面代码中的<html>标签之前...

dedecms 怎样做会员登录、注册、退出会员
2、打开头部公用模板文件templets\/default\/head.htm,找到如下汉字:3、把上图里汉字,替换为如下代码:<div id="_userlogin"> <form name="userlogin" action="{dede:global.cfg_memberurl\/}\/index_do.php" method="POST"> <input type="hidden" name="dopost" value="login" \/> <span>用户...

DW中编辑asp网页调用SQL数据库后如何实现搜索数据库操作
2、实现搜索操作,先创建搜索表单。提交表单的时候将页面提交当当前页面,制定某个行为动作进行判断。输入asp代码返回搜索结果举例:a.asp<form action="a.asp?ac=search<!--提交到asp页面检索返回数据-->" method="post"><input type="text" name="Key" \/><input type="submit" name="submit" value=" 搜索...

要一个php脚本,能够解压php空间里的zip文件。
<input name="按钮" type="button" value="返回" onclick="window.location='<?=$_SERVER[PHP_SELF];?>';"><input type='button' value='反选' onclick='selrev();'> <input type='submit' onclick='return confirm("删除选定文件?");' value='删除选定'><script language='javascript'>function...

求有文字和链接地址的弹出窗口的网页代码
<div id="HtmlEditor_Temp_HTML" style="VISIBILITY: hidden; OVERFLOW: hidden; POSITION: absolute; WIDTH: 1px; HEIGHT: 1px"><\/div> <input type="hidden" ID="ContentEdit" name="ContentEdit" value=""> <input type="hidden" ID="ModeEdit" name="ModeEdit" value=""> <input type="hidden"...

如何启用HTML代码
文本框:<input type="text" value="这是文本框"> \/\/value为该控件的值,以下每个表单控件均可设定,不设默认为空 密码框:<input type="password"> 单选框:<input type="radio"> 复选框:<input type="check"> 提交按钮:<input type="submit"> 重置按钮:<input type="reset">...

打开正规网站的网页时,是由上往下显示的,为什么?
<div style="margin-top:4px"><input type="submit" tabindex=2 value="搜索答案" class="bnsrh"><input type="hidden" name="ct" value="17"><input type="hidden" name="pn" value="0"><input type="hidden" name="tn" value="ikaslist"><input type="hidden" name="rn" value="10"><...

html中怎样实现具有下拉效果的多选框
<option value="4">4<\/option> <option value="5">5<\/option> <option value="6">6<\/option> <option value="7">7<\/option> <option value="8">8<\/option> <\/select> <br> <input type="button" name="Submit" value="提交" onclick="getValue()" \/><\/form><\/body><\/html>***补充**...

html中form标签的method求解,高手帮忙
<input id="Submit1" type="submit" value="submit" \/> <\/form> 上面的代码中2个地方需要注意:1、method的属性是get,所以通过网址传值,可见的;2、表单中有2个对象,一个文本框,一个提交按钮。要传递的是文本框的值,注意要把文本框的id属性改成name属性,这样文本框的值才能在网址处显示...

相似回答