无法使用jQuery和AJAX发送POST请求

时间:2014-10-11 04:10:27

标签: javascript php jquery ajax post

我正在尝试将POST数据发送到我的php文件notify.php。为此,我正在使用:

$.post("notify.php", { phone : phone_number });

phone_number是HTML中的输入名称。但是POST没有被发送。我使用Firebug firefox插件来检查AJAX错误并得到:

TypeError: 'stepUp' called on an object that does not implement interface HTMLInputElement.
...i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=enco...

有什么问题?

2 个答案:

答案 0 :(得分:1)

您需要在使用之前设置变量,否则它将在控制台中出错并向AJAX服务器发送未定义的值。

var phone_number = $('#phone_number').val();

这假设输入定义如下:

<input type="text" id="phone_number">

答案 1 :(得分:0)

首先尝试设置变量:phone_number = $('input [name = phone_number]')。val()