onclick在firefox中无法正常工作

时间:2014-09-03 23:03:18

标签: javascript html onclick local-storage

我有一行代码在单击特定img链接时将正文背景更改为黑色,如果再次单击img链接则返回白色。它在chrome中工作得很完美,但是在Firefox中,它适用于第一次单击,但在第二次单击时不会改变背部的背景。这是代码:

HTML

<a href="#" onclick="changeBackground('black');return false;"><img class="img1"  src="..."></img></a>  

JAVASCRIPT

       <script type = "text/javascript">
            function changeBackground(color) {
                if(document.body.style.background != 'black'){
                localStorage.color = document.body.style.background = color;
                }
                else if(document.body.style.background === 'black'){
                localStorage.color = document.body.style.background = 'white';
                }           
                changeBackground(localStorage.color);
            };
      </script>  

我认为这对onclick触发器没有问题,因为它可以在firefox中首次点击。它可能是javascript代码..但我没有看到任何遗漏......

1 个答案:

答案 0 :(得分:0)

你的函数是无限递归的,这意味着它无休止地调用自己,无法摆脱循环。

我建议您将changeBackground()电话转移到您的功能之外。

我还将调用附加到window.onload,以便在函数执行之前,<body>样式将在DOM中可用。

我也放宽了你的if逻辑,这样它就不会依赖于backgroundColor最初是“白色”还是“黑色”。

function changeBackground(color) {
    if (document.body.style.backgroundColor === 'black') {
        localStorage['color'] = 'white';
    } else {
        localStorage['color'] = color;
    }
    document.body.style.backgroundColor = localStorage['color'];
}

// this sets the background color to the localStorage value when the page loads
window.onload = function () {
    changeBackground(localStorage['color']);
}

WORKING EXAMPLE