Javascript
其实 js 还是有很多很好的编程特性的
<script type="text/javascript" src="E:/web/doc/jquery-1.7.1.js"></script> <script type="text/javascript" src="me.js"></script>
http get
function httpGet(theUrl) { var xmlHttp = null; xmlHttp = new XMLHttpRequest(); xmlHttp.open( "GET", theUrl, false ); xmlHttp.send( null ); return xmlHttp.responseText; }