JSON 教程
JSONP 教程
2. 客户端实现 callbackFunction 函数
源代码:
点击运行 »
<script type="text/javascript"> function callbackFunction(result, methodName) { var html = '<ul>'; for (var i = 0; i < result.length; i++) { html += '<li>' + result[i] + '</li>'; } html += '</ul>'; document.getElementById('divCustomers').innerHTML = html; } </script>
运行结果:
点击运行 »