手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >使用js声明数组,对象在jsp页面中(获得ajax得到json数据)
使用js声明数组,对象在jsp页面中(获得ajax得到json数据)
摘要:1、在jsp页面的js中可以用jsp标签varpatientInfoList={patientId:"${session.patientId...

1、在jsp页面的js中可以用jsp标签

var patientInfoList={patientId:"${session.patientId}"};

var docDepList=[],noTypeMap=["","普通号","主治医生号","副主任医师号","主任医师号"];

<c:forEach varStatus="idx" var="list" items="${docDepList}">

docDepList[${idx.index}]={doctorId:"${list.doctorId}",departmentName:"${list.departmentName}"};

</c:forEach>

docDepList是一个数组,在js赋值是里边可以是对象

patientInfoList是一个对象

2、如果ajax传过来的值是

复制代码 代码如下:

{"birthday":"1977-07-08","contactInfoList":[],"gender":"男"}形式可以用eval("("+data+")").birthday获得birthday的值

[{"contactInfo_ID":0,"create_Time":""create_Time}]形式相当于一个数组可以用eval("("+data+")")[0].create_Time得到

[{"contactInfo_ID":0,"create_Time":""create_Time},{"contactInfo_ID":0,"create_Time":""create_Time}],{"contactInfo_ID":0,"create_Time":""create_Time},{"contactInfo_ID":0,"create_Time":""create_Time}]

var dataArr=eval("("+data+")");

for(var i=0;i<dataArr.length;i++){

alert(dataArr[i].create_Time);

}

【使用js声明数组,对象在jsp页面中(获得ajax得到json数据)】相关文章:

javascript获取select值的方法分析

图片加载进度实时显示

AngularJS学习笔记之基本指令

对联广告 可关闭

VBScript版代码高亮

javascript实现获取服务器时间

document 和 document.all 分别什么时候用

javascript组合使用构造函数模式和原型模式实例

原生js实现的贪吃蛇网页版游戏完整实例

自己编写的支持Ajax验证的JS表单验证插件

精品推荐
分类导航