JavaScript包含

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript包含相关的知识,希望对你有一定的参考价值。

Include JavaSript files.
  1. function include(arquivo){
  2. var novo = document.createElement("<script>");
  3. novo.setAttribute('type', 'text/javascript');
  4. novo.setAttribute('src', arquivo);
  5. document.getElementsByTagName('body')[0].appendChild(novo);
  6. //apos a linha acima o navegador inicia o carregamento do arquivo
  7. //portanto aguarde um pouco até o navegador baixá-lo. :)
  8. }

以上是关于JavaScript包含的主要内容,如果未能解决你的问题,请参考以下文章