-4
我需要幫助修復我的jQuery腳本。我不確定jQuery的規則。這個腳本運行後,我需要循環。jQuery - SyntaxError:意外的輸入結束
<script>
$(document).ready(function(){
var $title = $('#banner-title span').replaceWith('Testimonials');
var $title2 = $('#banner-title span').replaceWith('Rental Program');
var $title3 = $('#banner-title span').replaceWith('Services');
$title.fadeIn('fast',function() {
$title.delay(7500).fadeOut('fast',function() {
$title2.fadeIn('fast',function() {
$title2.delay(7500).fadeOut('fast',function() {
$title3..fadeIn('fast',function() {
$title3.delay(7500).fadeOut('fast');
});
}
</script>
這個問題沒有提供足夠的信息來回答。怎麼了? –
我推薦閱讀https://developer.mozilla.org/en-US/docs/JavaScript/Getting_Started,然後http://learn.jquery.com/using-jquery-core/ – undefined
'$ title3..fadeIn' - 那將不適用於雙點。 –