外部javascript不起作用

| No Comments

  加载了外部 javascript 不起作用,把js代码写到html里面却好使。这样修改一下就正常了。

Html内容:

<html>
<head>
  <script type="text/javascript" src="my.js"></script>
  <title>外部 javascript </title>
</head>
<body 

Js内容:

// JavaScript Document
getText();
function getText()
{
  var textString="";
    textString+='<div id="header-inner">';
    textString+=  '<div id="header-content">';
    textString+=    '<div id="header-name">';
    textString+=      '<a href="https://www.sothink.cn/" accesskey="1">SOTHINK</a>';
    textString+=      '</div>';
    textString+=    '<div id="header-description"></div>';
    textString+=  '</div>';
    textString+='</div>';
    document.getElementById("SOTHINK").innerHTML=textString;
}

  之前把JS放到外部不起作用,就是因为<body>里面没有加 onLoad="getText()" 这句话,浪费了我整整一天的时间。 - -||

本文结束。

Leave a comment