我有button.php,这个代码在button.php
中<a href="Cancel.php<button type="button">Cancel</button></a>
我有Cancel.php
<?php
//Do something
header("location:button.php")
?>
当我单击“取消”按钮时,它应该处理某些内容并返回到相同的php文件。 它正在返回,但没有重新加载或更新页面内容。 有没有重新加载的方法或我的编码方法是错误的。我可以在这里使用Jquery吗?请帮帮我!
答案 0 :(得分:0)
使用header("Refresh:0");
<?php
//Do something
header("Refresh:0");
?>
将此用于不同的页面
header("Refresh:0; url=button.php");
答案 1 :(得分:0)
您必须添加简单的a
超链接,如下所示:
<?php
<a href="Cancel.php">Cancel</a>
?>
在超级链接中不需要button
,您可以使用下面的按钮以另一种方式执行此操作:
<button type="button" onclick="location.href='Cancel.php';">Cancel</button>
答案 2 :(得分:0)
您可以使用[1.0, 2.0, 3.0]
[4.0, 5.0, 6.0]
[7.0, 8.0, 9.0]
。
for i in xs:
print(i[0], i[-1], "\n")
在PHP中
JS