这是代码:
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"> </div>
<div id="secondsDiv"> </div>
<div id="quoteDiv" onload="randomQuote()"> </div>
<a href="intro.html">
<div class="element"></div>
<p class="logo">a</p>
</a>
<p class="credits">Made by Jaiveer Chadda </p>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
使用Javascript:
/////////////////////////////////////////////// Q U O T E ///////////////////////////////////////////////
window.onload = function() {
var randNumForQuote = Math.floor((Math.random() * 11));
if (randNumForQuote == 0) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>Life is like riding a bicycle.<br>To keep your balance, you must keep moving.<span>”</span><br> - Albert Einstein';
} else if (randNumForQuote == 1) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>You only live once, but if you do it right, once is enough.<span>”</span><br> - Mae West';
} else if (randNumForQuote == 2) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </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>”</span><br> - Albert Einstein';
} else if (randNumForQuote == 3) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>Be the change you want to see in the world.<span>”</span><br> - Mahatma Gandhi';
} else if (randNumForQuote == 4) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>To live is the rarest thing in the world.<br> Most people exist, that is all.<span>”</span><br> - Oscar Wilde';
} else if (randNumForQuote == 5) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>No one ever drowned in sweat<span>”</span><br> - British Naval Saying';
} else if (randNumForQuote == 6) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>Simplicity is the ultimate sophistication<span>”</span><br> - Leonardo Da Vinci';
} else if (randNumForQuote == 7) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>Fall seven times, stand up eight.<span>”</span><br> - Japanese proverb';
} else if (randNumForQuote == 8) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>He who learns but does not think is lost! <br>He who thinks but does not learn is in great danger.<span>”</span><br> - Confucius';
} else if (randNumForQuote == 9) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </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>”</span><br> - Unknown';
} else if (randNumForQuote == 10) {
document.getElementById("quoteDiv").innerHTML = '<span>“ </span>Live as if you were to die tomorrow.<br>Learn as if you were to live forever<span>”</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 + "   " + 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);
当我将此代码作为本地文件运行时,它的所有工作都应该如此。时间和报价都有效,时间每秒都在刷新。
但是,当我将其设为本地镀铬扩展时,只有报价有效。
请帮助。
答案 0 :(得分:0)
您违反了针对扩展程序强制执行的若干内容安全策略。
阅读the documentation。它非常全面。
您不能拥有内联代码:禁止在HTML中设置onload="..."
。如果您确实需要绑定到load
事件(在这种情况下非常有疑问),请使用addEventListener
。考虑切换到DOMContentLoaded
事件。
您的调用setInterval("showDate()", 1000);
是一个隐式eval
:您强制JavaScript引擎解析字符串以执行,而不是完全不必要地使用对函数的引用。这个很容易修复:setInterval(showDate, 1000);