<script type="text/javascript">
function callbackFunction(result, methodName)
for(var i = 0; i < result.length; i++)
html += '<li>' + result[i] + '</li>';
document.body.innerHTML += html;
<script type="text/javascript" src="http://localhost:80/jsonp.php?callBack=callbackFunction&a=1"></script>
<script type="text/javascript" src="http://localhost:80/jsonp.php?callBack=callbackFunction&a=2"></script>
<script type="text/javascript" src="http://localhost:80/jsonp.php?callBack=callbackFunction&a=3"></script>
header('Content-type: application/json');
$callBack = htmlspecialchars($_REQUEST ['callBack']);
echo $callBack . "(" . $arr . ")";