作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 html 页面中有一个表单,
<form method="post" name="myemailform" target="_blank" action="http://xxxxx.com/xxx/gxxif/xx/form-to-email.php">
<b>Enter your Personal Identification Number / PIN: </b>
<input name="pincode" type="password" maxlength="4" id="ctl00_cphContent_txtPIN" autocomplete="off">
<input type="submit" name="pincodesend" value="Next >>" id="ctl00_cphContent_btnSubmit" class="SmallButton">
</form>
现在,我还有一个 <META HTTP-EQUIV="refresh" CONTENT="5">
问题是当我不使用表单时它的刷新很好,当我使用它时,它完全停止了我的刷新。
有什么方法(没有 javascript)可以解决这个问题吗?
最佳答案
我认为重定向 (301) 而不是刷新会解决问题。如果您在服务器上运行 PHP:
<?php
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: http://YOUR-WEB.SITE/path/path.php" );
?>
关于php - 表单方法 ="post"阻止了我的元刷新发生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28141706/
我是一名优秀的程序员,十分优秀!