나는 자바 스크립트를 사용하여 따옴표 목록을 무작위로 표시하는 웹 사이트를 운영하고 있습니다. 저는이 같은 스크립트를 문제없이 7-8 개의 다른 사이트에서 사용했지만,이 현재 사이트에서는 몇 초 후에 브라우저가 손상됩니다.견적 리볼버 충돌 웹 사이트
따옴표가없는 페이지에서 자바 스크립트가 호출되어 비슷한 문제가 발생했지만 자바 스크립트를 따옴표로 '포함'파일로 이동하면이 문제를 해결할 수 있습니다.
사이트는 다른 서버와 동일한 서버 공간에 있으며 파일이 정확히 동일하므로이 사이트에 문제가있는 이유와 다른 사이트가 아닌 이유를 해결할 수 없습니다. .. 여기
는 ... 스크립트입니다<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>
미리 감사드립니다!
완벽한! 감사! –