我读了很多关于这个问题的问题和答案,但没有人解决我的问题。
所以我有一个简单的表格:
<form action="#" name="pm" id="pm" method="post">
<input onclick="sendPM()" name="pmSubmit" type="submit" value="Send" />
</form>
以下功能:
function sendPM() {
$.post("something.php").then(function(data) {
});
}
在“something.php”中,我对我的数据库做了一个简单的INSERT INTO
。
此代码在IE中完美运行但在Firefox中不起作用。
我不知道,我能做些什么来解决这个问题。
如果有人能帮助我,会为我节省很多时间。