jQuery ajax如何传多个值到后台页面,举例:

Posted Smina俊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery ajax如何传多个值到后台页面,举例:相关的知识,希望对你有一定的参考价值。

 

一、js代码

<script type="text/javascript">
$("#save_change_<{$aff.Id}>").click(function(){
//从模态框中取值,并通过ajax传到后台
var account = document.getElementById("change_account_<{$aff.Id}>").value;
var password = document.getElementById("change_password_<{$aff.Id}>").value;
var transactionCrawled = document.getElementById("change_transactionCrawled_<{$aff.Id}>").value;
$.ajax({
type: "POST",
url: "b_aff_aff_change.php",
dataType: "json", //当在前台页面获取后台的msg.account和msg.password是,不标明datatype:"json",是取不到值的!!!
data: "account="+account+"&id=<{$aff.Id}>&password="+password+"&transactionCrawled="+transactionCrawled, //跟url get传参类似,多个值直接加&,变量用+进行连接
success: function(msg){ 
//通过js改变当前页的td值
document.getElementById("account_<{$aff.Id}>").innerhtml = msg.account;
document.getElementById("password_<{$aff.Id}>").innerHTML = msg.password;
document.getElementById("transactionCrawled_<{$aff.Id}>").innerHTML = msg.transactionCrawled.toUpperCase();

}

});

});

</script>

二、后台页面b_aff_aff_change.PHP

<?php

echo json_encode($_POST); //与ajax中的datatype:"json"相对应,必须先将$_POST数组转换成json格式
?>

以上是关于jQuery ajax如何传多个值到后台页面,举例:的主要内容,如果未能解决你的问题,请参考以下文章

页面上用jQuery获取的值,怎样能传递到后台,C#

MVC中使用Ajax提交数据 Jquery Ajax方法传值到action

ajax传值,传不到后台 ,求解释

jquery 跳转页面传值的问题

jsp页面像action中传值问题,需要传递一个map

Django 怎样传数据给HTML页面的ajax