Javascript按钮在IE中不起作用;在其他浏览器中工作

时间:2012-06-15 14:17:43

标签: javascript arrays internet-explorer google-chrome button

在IE中使用javascript按钮时遇到问题。我使用javascript创建了一个按钮,使用预先确定的数组中随机选择的文本刷新我的页面。它在Firefox,Chrome和Safari中完美运行,但在IE中则不然。在IE中,没有任何刷新。

任何人都可以帮我修复,以便这个Javascript在IE中运行吗?

<html>

<head>
    <title>WTF </title>         
</head>

<style type="text/css">

#reason {font-family: "Helvetica", serif; color: white; }

button{
color:#08233e;
font:2.4em Futura, ‘Century Gothic’, AppleGothic, sans-serif;
font-size:70%;
padding:14px;
background:url(overlay.png) repeat-x center #ffcc00;
background-color:rgba(255,204,0,1);
border:1px solid #ffcc00;
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
border-bottom:1px solid #9f9f9f;
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
box-shadow:inset 0 1px 0 rgba(255,255,255,0.5);
cursor:pointer;
}

button:hover{background-color:rgba(255,204,0,0.8);}

</style>

<body>

    <div class="con">
        <p id="reason" >
    <center><script language="JavaScript">
    var r_text = new Array ();
r_text[0] = "Sample 1";
r_text[1] = "Sample 2";
r_text[2] = "Sample 3";
var i = Math.floor(3*Math.random())
document.write(r_text[i]);
</script>
</p>
<br>   
<a href="" class="button1"><button>TELL ME MORE</button></a><br>
</div> 

</body>

</html>

1 个答案:

答案 0 :(得分:1)

这是刷新页面的错误方法。看看this question。尝试改变它,看看它是否更好。 此外,&#34;中心&#34;标记为deprecated,因此最好不要使用它。并且像这样简单地声明数组会更容易:

r_text = ['Sample 1', 'Sample 2', 'Sample 3'];