更改段落的内容不工作javascript

时间:2014-05-24 11:45:21

标签: javascript html

此代码用于在每次加载时更改页面上的引号,但段落仍为空。

<script>
(function() {
var quotes = [
    {
    text: "This is the first possible quote”"
    },
    {
    text: "This is the second possible quote”"
    },
    {
    text: "This is the third possible quote”"
    }
    ];
var quoteUse = quotes[Math.floor(Math.random() * quotes.length)];
document.getElementById('quote').innerHTML=quoteUse.text;
})();

1 个答案:

答案 0 :(得分:0)

由于低代表,我无法发表评论,但your code seems to be working。确保存在id="quote"的元素,并检查控制台是否有错误。