将json对象从jsp传递到外部javascript文件时获取null值

时间:2016-09-14 18:20:49

标签: javascript json jsp

我通过以下方式将json对象从我的jsp文件传递到我的js文件:

在jsp文件中:

 <script type="text/javascript" src="<%=request.getContextPath() %>/sortGrid.js"></script>
    JSONArray jsonArray = new JSONArray(orderDetailsList1);
    <input type="hidden" value='<%out.println(jsonArray);%>' id="jsonArray"/>
    out.println(jsonArray);  //----> printing fine, getting all the data

在js.file中:

var jsonArray = document.getElementById("jsonArray");
    console.log(jsonArray); //-----> getting null here

为什么我在js文件中将json数据作为null?

0 个答案:

没有答案