从外部动态加载的js文件中解析信息

时间:2016-05-24 00:42:15

标签: javascript jquery arrays

我附加了外部js文件,每次访问时都会更改。 这是我的档案。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Damn</title> 
</head>
<body>
<script async="" src="//xx.example.net/checkInventory.php?_=&amp;v=3&amp;siteId=1059123&amp;minBid=0&amp;popundersPerIP=0&amp;blockedCountries=&amp;documentRef=&amp;s=1600,900,1,1600,900" type="text/javascript"></script>

</body> 
</html> 

当我在浏览器中输入xx.example.net/.....链接时,这是响应:

window._pao.parse({ 'result': 1, 'url': 'http://example.com/', 'bla': 'bla', 'bla': 1 });

我想在我的代码中解析这个url。我该如何处理这个问题?

1 个答案:

答案 0 :(得分:0)

根据您在此处提供的有限信息,我最好猜测您想​​要的内容:

<script>
    window._pao = {}
    window._pao.parse = function (object){ // Declare the window._pao.parse function in order to capture  the object
        // Here object = { 'result': 1, 'url': 'http://example.com/', 'bla': 'bla', 'bla': 1 }
        // Do stuff with object here
        document.write(object.url)
    }
</script>
<script src="path/to/your/external/js/file.js"></script>