asp中要实现点击一个按钮转到另一个网页有几种方法实现?

2024-12-14 01:31:31
推荐回答(5个)
回答1:

onclick="window.open('xxx.asp',target='_self');"



按钮动作不一定是提交表单,如:


前者的作用是提交表单,点击后提交到form的action属性指定的处理页面上
后者必须人为地指定动作,否则没有意义,因此可以加上:
onclick="window.location.href='xxx.htm'"
点击后转到xxx.htm

回答2:

表单实现





表单加JS实现






要在本窗口打开,修改target="_blank"为target="_self"

回答3:

onclick="window.open('xxx.asp',target='_self');"

回答4:

1、a标签,背景图按钮,直接点击跳转链接href="xxx.asp"
2、js的onclick="location.href='xxx.asp'"
基本都是采用这2种方式跳转的

回答5: