导航到URL时阻止脚本执行?

时间:2019-02-26 17:09:50

标签: javascript

我正在尝试使用以下方法导航到特定页面 window.location = "pageOnlyAvailableLocally.com 页面加载完毕后,我将收集一些信息。但是,页面具有此脚本

<!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" xml:lang="en" lang="en">
<head>
        <script type="text/javascript">
            if(window.location === window.parent.location) {
                var tail        = '',
                    portal_url  = 'https\u003a\u002f\u002fanotherpage.com\u002innerframe';
                window.location = [portal_url, tail].join('');
            }
        </script>
...

,它可以立即重定向到另一个页面。因此,每当我尝试与该页面进行交互时,实际上是在与另一个页面进行交互。

因此,在导航到页面“ pageOnlyAvailableLocally.com”时,我可以以某种方式跳过或删除此脚本吗?

0 个答案:

没有答案