我想在点击更新/提交按钮时更改页面。这是我的提交按钮代码:
dbstop
我在我想要链接/ href的地方放置一个问号。或者你可以建议其他方法,当我点击更新按钮,它指示我到另一个PHP文件。谢谢!
答案 0 :(得分:2)
不需要onclick
。 onclick
用于执行JS。这是通过为action
设置<form>
属性来完成的。
<form method="POST" action="anotherPHPFile.php">
<input type="submit" name="submit" value="Update">
</form>
点击按钮后,您将被重定向到anotherPHPFile.php
。
答案 1 :(得分:0)
这样做!
function redirect(e){
//If you want to check something here can prevent defualt button action
// e.preventDefault()
//now do your action.
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// you can also use this line to do similar behavior as clicking on a link
// window.location.href = "http://stackoverflow.com";
}
&#13;
<input type="submit" name="submit" value="Update" onclick="redirect()">
&#13;