JavaScript 问题
我如何将此变量添加到上面的代码中?我需要传递这两个变量。我尝试过,但代码无法按我的预期工作(警报不适用于更改)。
name: $('#name').val(),
email: $('#email').val()
<script type="text/javascript">
jQuery(document).ready(function() {
$.ajax("valid.php", {
type: "POST",
dataType: "json",
name: $('#name').val(), //here??
email: $('#email').val() //here??
success: function(step) {
if (step.first) {
alert("fdsgdfg");
}
if (step.second) {
alert("dfgdfg");
}
}
});
});
</script>
谢谢!
how i can add this variables to the code above? i need to pass these two variables. I tried but the code doesn't work as i expect (alerts doesn't working with the alterations).
name: $('#name').val(),
email: $('#email').val()
<script type="text/javascript">
jQuery(document).ready(function() {
$.ajax("valid.php", {
type: "POST",
dataType: "json",
name: $('#name').val(), //here??
email: $('#email').val() //here??
success: function(step) {
if (step.first) {
alert("fdsgdfg");
}
if (step.second) {
alert("dfgdfg");
}
}
});
});
</script>
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将另一部分添加到您的 ajax 调用中,称为“数据”。
或者:
Add another part to your ajax call called "data".
Alternatively:
如 jQuery 文档中所述,您可以使用
data
选项通过请求传递数据:As stated in the jQuery documentation, you pass data with the request using the
data
option: