获取js内容,以字符串形式!
http://www.baidu.com/cache/hps/js/hps-1.4.js
JScript code
(function(){
var K="http://www.baidu.com/",E=navigator.userAgent.indexOf("MSIE")!=-1&&!window.opera,F=Math.random()100,L="百度一下,你就...省略
这是百度的js文件,通过这个地址 我要获取到该js文件里面的内容(以string形式)。 var Ineed='上面这段code'
怎么个搞法。。貌似很简单,无从下手呀- -!应该是可以实现的把。
------解决方案--------------------
直接ajax请求
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
</head>
<body>
<div id="dv"></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript">
<!--
var _url = "http://www.baidu.com/cache/hps/js/hps-1.4.js";
$("#dv").load(_url,function(data){
$(this).html(data);
})
//-->
</script>
</body>
</html>