简体   繁体   English

当我将其插入Chrome扩展程序后,此代码中的JavaScript无法正常工作

[英]The JavaScript from this code is not working as expected when I made it into a Chrome Extension

This is the code: 这是代码:

HTML: HTML:

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    <title>New Tab</title>
  </head>

  <body id="body" onload="showDate()">

    <div id="timeDiv"> &nbsp; &nbsp; &nbsp; </div>
    <div id="secondsDiv"> &nbsp; &nbsp; </div>
    <div id="quoteDiv" onload="randomQuote()"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</div>
    <a href="intro.html">
      <div class="element"></div>
      <p class="logo">a</p>
    </a>
    <p class="credits">Made by Jaiveer Chadda &nbsp; &nbsp; </p>

    <script type="text/javascript" src="script.js"></script>

  </body>


</html>

Javascript: Javascript:

/////////////////////////////////////////////// Q U O T E ///////////////////////////////////////////////





window.onload = function() {
          var randNumForQuote = Math.floor((Math.random() * 11));

          if (randNumForQuote == 0) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Life is like riding a bicycle.<br>To keep your balance, you must keep moving.<span>&rdquo;</span><br> - Albert Einstein';
          } else if (randNumForQuote == 1) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>You only live once, but if you do it right, once is enough.<span>&rdquo;</span><br> - Mae West';
          } else if (randNumForQuote == 2) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Everyone is a genius, but if you judge a fish by it\'s<br> ability to climb a tree, it will live it\'s whole life<br> believing that it is stupid.<span>&rdquo;</span><br> - Albert Einstein';
          } else if (randNumForQuote == 3) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Be the change you want to see in the world.<span>&rdquo;</span><br> - Mahatma Gandhi';
          } else if (randNumForQuote == 4) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>To live is the rarest thing in the world.<br> Most people exist, that is all.<span>&rdquo;</span><br> - Oscar Wilde';
          } else if (randNumForQuote == 5) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>No one ever drowned in sweat<span>&rdquo;</span><br> - British Naval Saying';
          } else if (randNumForQuote == 6) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Simplicity is the ultimate sophistication<span>&rdquo;</span><br> - Leonardo Da Vinci';
          } else if (randNumForQuote == 7) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Fall seven times, stand up eight.<span>&rdquo;</span><br> - Japanese proverb';
          } else if (randNumForQuote == 8) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>He who learns but does not think is lost! <br>He who thinks but does not learn is in great danger.<span>&rdquo;</span><br> - Confucius';
          } else if (randNumForQuote == 9) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>I cried because I had no shoes, Till I saw a man <br>with no feet. Life is full of blessings,<br>Sometimes we are just too blind to see them...<span>&rdquo;</span><br> - Unknown';
          } else if (randNumForQuote == 10) {
            document.getElementById("quoteDiv").innerHTML = '<span>&ldquo; </span>Live as if you were to die tomorrow.<br>Learn as if you were to live forever<span>&rdquo;</span><br> - Mahatma Gandhi';
          }
        }




//////////////////////////////////////////////// T I M E ////////////////////////////////////////////////





function showDate() {

        var now = new Date();
        var date = ((now.getDate() < 10) ? "0" : "") + now.getDate();

      function fourdigits(number) {
          return (number < 1000) ? number + 1900 : number;
        }

        tnow = new Date();
        thour = now.getHours();
        tmin = now.getMinutes();
        tsec = now.getSeconds();

        if (tmin <= 9) { tmin = "0" + tmin; }
        if (thour < 10) { thour = "0" + thour; }

        if (thour > 12) {
          thour = thour - 12;
        }

        if (thour < 10){
          thour = "0"  + thour ;
        } else {
          thour = ""  + thour ;
        }

        if (tsec % 2 == 1){
          today = thour + " &nbsp "  + tmin;
        } else {
          today = thour + " : "  + tmin;
        }

        if (tsec < 10){
          now = "0"  + tsec ;
        } else {
          now = ""  + tsec ;
        }


        document.getElementById("timeDiv").innerHTML = today;
        document.getElementById("secondsDiv").innerHTML = now;


      }

      setInterval("showDate()", 1000);

When I run this code as a local file, all of it works like it should. 当我将此代码作为本地文件运行时,所有代码都应按应有的方式工作。 The time and quote are both working, and the time is refreshing every second. 时间和报价均正常工作,并且时间每秒刷新一次。

But when I make it a local chrome extension, only the quote is working. 但是当我将其设为本地chrome扩展名时,只有引号有效。

Pls help. 请帮助。

You are violating several Content Security Policies that are enforced for an extension. 您违反了为扩展实施的几个内容安全策略。

Have a read through the documentation . 通读文档 It's quite comprehensive. 非常全面。

  • You cannot have inline code: setting onload="..." inside the HTML is forbidden. 您不能有内联代码:禁止在HTML内设置onload="..." If you really need to bind to load events (which is extremely doubtuful in this case), use addEventListener . 如果您确实需要绑定到load事件(在这种情况下这是非常可疑的),请使用addEventListener Consider switching to DOMContentLoaded event though. 不过,请考虑切换到DOMContentLoaded事件。

  • Your call setInterval("showDate()", 1000); 您的呼叫setInterval("showDate()", 1000); is an implicit eval : you force the JavaScript engine to parse the string to execute instead of using a reference to a function, completely needlessly. 是一个隐式的eval :强制JavaScript引擎完全不必要地解析要执行的字符串,而不是使用对函数的引用。 This one is easy to fix: setInterval(showDate, 1000); 这个很容易解决: setInterval(showDate, 1000);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM