ajax表单不工作
这是我的 ajaxForm 代码
var qx = $('#XText').attr('value');
$.ajax({
type: "post",
url: "qsubmit.php",
data: "q="+qx,
success: function() {
}
});
和插入代码
include('db-config.php');
$q = $_POST['q'];
$insert_ann = sprintf("INSERT INTO med_tab (med_title) VALUES ('$q')");
mysql_select_db($database_med_pharm, $med_pharm);
$Result1 = mysql_query($insert_ann, $med_pharm) or die(mysql_error());
由于某种原因,这不起作用,不知道为什么,任何和所有帮助都会很棒。
我想在 ajax js 中的 data: "q="+qx,
中传入 2 个值,如何完成。
谢谢 让
Here is my ajaxForm code
var qx = $('#XText').attr('value');
$.ajax({
type: "post",
url: "qsubmit.php",
data: "q="+qx,
success: function() {
}
});
And the insert code
include('db-config.php');
$q = $_POST['q'];
$insert_ann = sprintf("INSERT INTO med_tab (med_title) VALUES ('$q')");
mysql_select_db($database_med_pharm, $med_pharm);
$Result1 = mysql_query($insert_ann, $med_pharm) or die(mysql_error());
For some reason this is not working not sure why, any and all assistance would be great.
I want to pass in 2 values in data: "q="+qx,
in the ajax js, how do I get that done.
Thanks
Jean
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在谈论 jquery 表单插件,您的代码应该如下所示:
如果没有,则使确保您正确编码请求:
或者如果您想发送表单内容:
最后,请确保您已安装 FireBug 更好地分析幕后发生的事情。
If you are talking about the jquery form plugin your code should simply look like this:
If not, then make sure you properly encode the request:
or if you want to send the contents of the form:
Finally, make sure you have installed FireBug to better analyze what's happening under the covers.