我有2页带有表单的 HTML 页面表单的 PHP 操作页面基于此,如果表单提交一切顺利,我想返回到第一页并使用document.getElementById.我知道要做到这一点,我需要 PHP 页面中的 header("Location: blabla") 函数返回到第一页,但是在到达该页面后我应该如何打开模式?任何帮助将不胜感激,非常感谢。
1 回答
RISEBY
TA贡献1856条经验 获得超5个赞
在这种情况下最好使用 ajax,但如果您必须这样做,您可以使用查询 pram,例如将用户重定向到您的 html 页面,如下所示
header("Location: blabla.html?m=some message to show")
然后在你的html页面中,你需要检查这个参数是否存在,然后像这样显示模式
searchParams = new URLSearchParams(window.location.search); if (searchParams.has('m')) { // searchParams.get('m') then open the modal or do what ever you want. }
编辑:您可以使用任何其他参数而不是消息,它可以是要显示的模式,或者其他什么
添加回答
举报
0/150
提交
取消