如何使用 Javascript 或 html 为我的站点创建跨浏览器友好的文本轮播?我一直在努力使用下面的代码,因为它只适用于 Firefox,但它在 IE 上失败。有没有办法让它在两者上都起作用?
<h4>Carousel-Text-Below </h4>
<html>
<head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'
type='text/javascript'></script>
<script type='text/javascript'>
$(document).ready(function(){
function setRandomWord(){
var phrases =new Array("1-Blah Text","2-Blah Text","3-Blah Text");
$("#test").text(phrases[Math.floor(Math.random()*phrases.length)]);
}
setInterval(setRandomWord,3000);
});
</script>
</head>
<body>
<p style="border:1px dashed gray; background-color:white; padding: 10px">
<span id='test'>Blah Text-Text-Text</p>
</span> Guaranteed Service or...Text---Text</strong></p>
</body>
</html>