Add current date using inline javascript - Stack Overflow

admin2025-04-03  0

The date is not showing up in the output when I run the following code. I can't seem to figure out why the date won't show up...

<!DOCTYPE html>
<html>
<head>
 <title>document.write() Example</title>
</head>
<body>
 <p>The current date and time is:
 <script type=”text/javascript”>
 document.write(“<strong>” + (new Date()).toString() + “</strong>”);
 </script>
 </p>
</body>
</html>

The date is not showing up in the output when I run the following code. I can't seem to figure out why the date won't show up...

<!DOCTYPE html>
<html>
<head>
 <title>document.write() Example</title>
</head>
<body>
 <p>The current date and time is:
 <script type=”text/javascript”>
 document.write(“<strong>” + (new Date()).toString() + “</strong>”);
 </script>
 </p>
</body>
</html>

Share Improve this question edited Oct 14, 2014 at 20:27 codeMagic 44.6k13 gold badges78 silver badges93 bronze badges asked Oct 14, 2014 at 19:21 GoodwordGoodword 1,64520 silver badges28 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 13

Because you are using these types of quotes: “ ... ”. You need to use " ... "

<script type="text/javascript">
    document.write("<strong>" + (new Date()).toString() + "</strong>");
</script>

Snippet:

 document.write("<strong>" + (new Date()).toString() + "</strong>");

Do it as the way the samurais do it...

<!DOCTYPE html>
<html>
  <head>
    <title>Example</title>
  </head>
  <body>

    <p>The current date and time is: <span id="myDate"></span> </p>

    <script>

      var d = new Date;
      var date = d.toString();

      span = document.getElementById('myDate');
      txt = document.createTextNode(date);
      span.innerText = txt.textContent;

    </script>


  </body>
</html>

You can try this snippet. It is similar to what you used but avoid using document.write.
Plus is safer because it cannot overwrite all the document if it was loaded.

<p id="date"></p>

<script>
date = document.getElementById("date");
date.innerHTML = new Date();
</script>

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743631983a213941.html

最新回复(0)