我有一个表单,在单击“删除”按钮时应该将用户重定向到一个页面。这是表单中的唯一对象。
<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中试过。我显然错过了一些东西。