gpt4 book ai didi

javascript - 提交输入不会在 IE 和 Firefox 中发布

转载 作者:行者123 更新时间:2023-11-28 20:08:11 25 4
gpt4 key购买 nike

表单已提交,但提交按钮未提交。var_dump($_POST) 显示表单提交的所有变量,但不显示 'submit1' => string 'Insert' (length=6)

Chrome 会发布提交按钮,但 Firefox 和 IE 不会。

Javascript:

$('#form1').on('submit', function(event) {
event.preventDefault();
var self = this;
...
self.submit();
});

HTML:

<input type="submit" name="submit1" value="Insert" />

最佳答案

尝试使用

<button type="submit" name="submit1">Insert</button>

而不是

<input type="submit" name="submit1" value="Insert" />

关于javascript - 提交输入不会在 IE 和 Firefox 中发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20394139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com