Home >Backend Development >PHP Tutorial >chrome浏览器下isset($_POST['submit'])不返回ture,该如何解决

chrome浏览器下isset($_POST['submit'])不返回ture,该如何解决

WBOY
WBOYOriginal
2016-06-13 11:51:33899browse

chrome浏览器下isset($_POST['submit'])不返回ture
在IE下能成功,但在chrome下不能,是否是浏览器自身的BUG?
------解决方案--------------------
代码没有问题,你怎么测试的。chrome 什么版本。
------解决方案--------------------
你到gg浏览器里看看有没有 gg的开发人员工具跟一下

引用:
$_POST['submit1']能够获取到submit1这个字符串

------解决方案--------------------
注意缓存
------解决方案--------------------
Chrome是有问题的,但是采用提交按钮的值的做法尽量不要采用。另外如果用javascript的form.submit()的话,IE下也不提交的。建议采用hidden变量。
------解决方案--------------------
直接打印$_POST看下有没有
------解决方案--------------------
引用:
直接打印$_POST看下有没有

+1
你先看看你的$_POST数组是否有值,如果数组为空,那么你的判定肯定是错的,因为都没有这个数组元素存在。而且为了避免重复提交等问题,你还是用javascript提交表单比较好。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn