我附加了外部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?_=&v=3&siteId=1059123&minBid=0&popundersPerIP=0&blockedCountries=&documentRef=&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
。我该如何处理这个问题?
答案 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>