无法设置属性innerHTML错误

时间:2018-04-13 01:57:04

标签: javascript jquery

我正在尝试从我创建的内部网站的按钮中自动打开外部网站的过程,但我无法引用我创建的文档,请按照下面的代码,尝试了几次但不能,任何帮助是有效的,非常感谢你。

<!DOCTYPE html>

<head>
  <title>Principal</title>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />

  <script src="\\fswcorp\ceic\ssoa\gaacc\System\JQuery\jquery-3.2.1.min.js"></script>
  <script src="\\fswcorp\ceic\ssoa\gaacc\System\jQueryMask\dist\jquery.mask.min.js"></script>
  <script src="\\fswcorp\ceic\ssoa\gaacc\System\jQueryUI\jquery-ui.js"></script>
  <script>
    $(document).ready(function() {
      $("#dateBegin").mask('00/00/0000');
      $("#dateEnd").mask('00/00/0000');

      $("#buttonDownloadBRScan").click(function() {
        $windowopen = window.open();
        $windowopen.location.href = "https://www.fdibr.com.br/autenticacao/autenticacao/login";
        $test = $windowopen.document.getElementById("usuario").innerHTML = "7478704";
      })
    });
  </script>
</head>

<body>
  <div class="dataInput">
    <label id="labelDateBegin">Data Inicial</label>
    <input id="dateBegin" type="date" />
    <label id="labelDateEnd">Data Final</label>
    <input id="dateEnd" type="date" />
  </div>
  <br><br>
  <button id="buttonDownload">Download</button>
  <button id="buttonDownloadBRScan">Download BRScan</button>
</body>

3 个答案:

答案 0 :(得分:1)

假设您在打开的窗口中有权访问该域(相同的原始策略),您必须等待窗口先完成打开才能访问其中的元素。

    ID      Date      ZIPCODE
    196512  3/1/2016   96512
    196795  1/1/2015   03452

答案 1 :(得分:0)

尝试这样的事情:

<input id="yourID" type="button" onclick="open_page()" value="Your Message Here"/>

<script>

    function open_page () {
        window.open('Your Webpage');
}

</script>

答案 2 :(得分:0)

外部网站和您的内部网站有不同的域名,您无法直接修改内部网站的外部网站内容。您可以使用window.postMessage,也许它可以解决您的问题