0

我有一个表单,在单击“删除”按钮时应该将用户重定向到一个页面。这是表单中的唯一对象。

<input type="submit" name="delete" value="Delete" class="submitbutton" id="submitbutton"  onclick="Redirect();"> 

不幸的是,重定向不起作用:

<script type="text/javascript">

function Redirect()
{
 alert('b');
 window.location="http://www.tutorialspoint.com";
}

</script>

显示警报。然后什么也没有发生。我也试过window.navigate。我正在拔头发。

如果这很重要,则在页面开头有一个会话:

<?php
session_start();
?>
<html>...

我在chrome和firefox中试过。我显然错过了一些东西。

4

2 回答 2

1

它可能正在运行您的脚本,然后提交表单。

你应该使用:

<input type="button" ...>

代替:

<input type="submit" ...>
于 2013-01-30T18:40:27.127 回答
0

它一直在我眼前:此页面上接受的解决方案: 尝试将javascript确认框与php post方法结合起来?

于 2013-01-30T19:01:27.033 回答