gpt4 book ai didi

javascript - jQuery ticker 在 jsfiddle 中有效,但在 .HTML 中无效

转载 作者:行者123 更新时间:2023-11-28 15:27:49 25 4
gpt4 key购买 nike

我有这个在 jsFiddle 中工作的 jQuery newsticker,但如果我将它传输到 HTML 文件,它就不再工作了。一切都完全一样,但它不起作用,这很奇怪。

这是 jsFiddle:http://jsfiddle.net/RXH6w/9/

$.noConflict();
jQuery( document ).ready(function( $ ) {
function NewsTickerAutoPlay() {
$(".NewsTicker li:first-child").slideUp(function () {
$(this).appendTo(".NewsTicker").fadeIn();
});
}
setInterval(function () {
NewsTickerAutoPlay()
}, 1000);
});

这是我从 jsFiddle 复制的 HTML:http://jehzlau.net/ticker.html

一切都被完全相同地复制,但它在我的 HTML 中不起作用。我希望这里有人可以追踪我的简单问题。

最佳答案

使用以下代码更新您的 HTML。请记住,在 JSFiddle URL 的末尾添加“/show”将引导您浏览整个页面中的所有内容。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Simple NewsTicker - jsFiddle demo</title>

<script type='text/javascript' src='/js/lib/dummy.js'></script>




<link rel="stylesheet" type="text/css" href="/css/result-light.css">


<script type='text/javascript' src="http:///ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>


<style type='text/css'>
.NewsTicker {
list-style-type:none;
margin:0;
padding:0;
line-height:20px;
height:20px;
overflow:hidden
}
</style>



<script type='text/javascript'>//<![CDATA[
window.onload=function(){
$.noConflict();
jQuery( document ).ready(function( $ ) {

function NewsTickerAutoPlay() {
$(".NewsTicker li:first-child").slideUp(function () {
$(this).appendTo(".NewsTicker").fadeIn();
});
}

setInterval(function () {
NewsTickerAutoPlay()
}, 1000);

});
}//]]>

</script>


</head>
<body>
<ul class="NewsTicker">
<li>Etisalat and Huawei Conduct First 400G Trial Optical Transport Network in Middle East and North Africa</li>
<li>Huawei to Deploy Africa's First Smart eLTE Urban Railway Communications System in Ethiopia</li>
</ul>

</body>


</html>

关于javascript - jQuery ticker 在 jsfiddle 中有效,但在 .HTML 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24815103/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com