onclick="window.open('xxx.asp',target='_self');" 按钮动作不一定是提交表单,如: 前者的作用是提交表单,点击后提交到form的action属性指定的处理页面上后者必须人为地指定动作,否则没有意义,因此可以加上:onclick="window.location.href='xxx.htm'"点击后转到xxx.htm
表单实现
onclick="window.open('xxx.asp',target='_self');"
1、a标签,背景图按钮,直接点击跳转链接href="xxx.asp"2、js的onclick="location.href='xxx.asp'"基本都是采用这2种方式跳转的
按钮