asp中要实现点击一个按钮转到另一个网页有几种方法实现?
发布网友
发布时间:2022-04-26 08:34
我来回答
共7个回答
热心网友
时间:2022-04-26 10:04
onclick="window.open('xxx.asp',target='_self');"
<a href="xxx.asp" target="_blank"><input type="button" value=xxx></a>
<a href="" onclick="window.open('xxx.asp',target='_self');"
<input type="button" value=xxx></a>
按钮动作不一定是提交表单,如:
<input type="submit" name="button" id="button" value="提交" />
<input type="button" name="button2" id="button2" value="按钮"/>
前者的作用是提交表单,点击后提交到form的action属性指定的处理页面上
后者必须人为地指定动作,否则没有意义,因此可以加上:
onclick="window.location.href='xxx.htm'"
点击后转到xxx.htm
热心网友
时间:2022-04-26 11:22
表单实现
<form action="new.asp" method="post" name="form1" target="_self" id="form1">
<input type="submit" name="Submit" value="提交" />
</form>
表单加JS实现
<script language="javascript">
function func(){
document.form1.action="new.asp";
document.form1.submit();
}
</script>
<form action="" name="form1" target="_blank">
<input type=button value="提交" onclick="func();">
</form>
要在本窗口打开,修改target="_blank"为target="_self"
热心网友
时间:2022-04-26 12:56
onclick="window.open('xxx.asp',target='_self');"
<a href="xxx.asp" target="_blank"><input type="button" value=xxx></a>
<a href="" onclick="window.open('xxx.asp',target='_self');"
<input type="button" value=xxx></a>
热心网友
时间:2022-04-26 14:48
1、a标签,背景图按钮,直接点击跳转链接href="xxx.asp"
2、js的onclick="location.href='xxx.asp'"
基本都是采用这2种方式跳转的
热心网友
时间:2022-04-26 16:56
<a href="" onclick="window.open('in.asp',target='_blank');"
按钮</a>
热心网友
时间:2022-04-26 19:20
onclick="window.open('fff.asp',target='_blank');"
<a href="" target="_blank">按钮</a>
热心网友
时间:2022-04-26 22:02
那是javascript ,和ASP无关