如何使用javascript更改标题值?

时间:2016-08-12 05:25:09

标签: javascript html

我尝试使用该代码但它不起作用?

     <html>

       <head>

       <script>

    document.getElementbyId("title1").value="MyTitle";

         </script>

     <title id="title1"> </title>

      </head>

       <body>

        </body>

      </html>

javascript中是否有任何方法?

2 个答案:

答案 0 :(得分:1)

您可以使用document.title

<!DOCTYPE html>
<html>
<head>
  <title id="title1"> </title>
  <!-- note `<script>` element after `<title>` element -->
  <script>
    document.title = "MyTitle";
  </script>
</head>
<body>
</body>
</html>

答案 1 :(得分:1)

  1. 使用document.title请参阅document.title
  2. 的MDN文档

    <html>
    
    <head>
      <title id="title1"></title>
    </head>
    
    <body>
    </body>
    <script>
      document.title = "MyTitle";
    </script>
    
    </html>

    1. 如果您正在使用DOM操作,请在加载元素后执行此操作。
    2. <html>
      
      <head>
        <title id="title1"></title>
      </head>
      
      <body>
      </body>
      <script>
        document.getElementbyId("title1").value = "MyTitle";
      </script>
      
      </html>