我有一個網站,使用JavaScript隨機顯示引號列表。我已經在7-8個其他網站上使用了這個相同的腳本,沒有問題,但是在這個當前網站上,它幾秒鐘後就會崩潰瀏覽器。Quote左輪手機崩潰網站
我確實有一個類似的問題,這是由於在沒有引號的頁面上調用javascript,但我通過將javascript移動到與引號相同的'includes'文件來解決此問題被稱爲沒有其他)
該網站是在與另一個相同的服務器空間和文件是完全一樣的,所以我不能找出爲什麼這個網站有問題,其他不是。 ..
這裏是腳本...
<ul id="quote">
<?php perch_content('Testimonials'); ?>
</ul>
<script type="text/javascript">
this.randomtip = function() {
var pause = 5000; // define the pause for each tip (in milliseconds) Feel free to make the pause longer so users can have time to read the tips :)
var length = $("#quote li").length;
var temp = -1;
this.getRan = function() {
// get the random number
var ran = Math.floor(Math.random() * length) + 1;
return ran;
};
this.show = function() {
var ran = getRan();
// to avoid repeating tips we need to check
while (ran == temp) {
ran = getRan();
};
temp = ran;
$("#quote li").hide();
$("#quote li:nth-child(" + ran + ")").fadeIn(500);
};
// initiate the script and also set an interval
show();
setInterval(show, pause);
};
$(document).ready(function() {
randomtip();
});
</script>
在此先感謝你們!
完美!謝謝! –