我在圖像上一次性顯示文字。所以每行都有<BR>
標籤,但是當使用jquery在圖像上顯示文本時,BR沒有正確翻譯,而空白空間正在頁面的頂部。 這裏是我的腳本新行字符無法正確呈現jquery
<div id="HeaderMessage" class="HeaderMsg1">
<span class="HeaderMsg">A LIFETIME WARRANTY FOR EVERY PART WE REMANUFACTURE.<br/>We reengineer the faults out of parts so they won't fail again. Guaranteed.</span>
<span class="HeaderMsg">PROFIT FROM ENGINEERING EXPERTISE.<br/>We offer you reliable parts, low prices and easy access to automotive knowledge.</span>
<span class="HeaderMsg">JOIN US FOR A CAREER THAT CAN TAKE YOU FURTHER, FASTER. <br/>Reengineer your future with a world leader in the remanufacture of electronic automotive parts.</span>
<span class="HeaderMsg">THE SENSIBLE CHOICE IS THE GREENER CHOICE TOO.<br/>Our parts save precious raw materials, reduce automotive waste and require less CO2 to produce. </span>
</div>
$('.HeaderMsg1 span:gt(0)').hide();
setInterval(function() {
$('.HeaderMsg1 :first-child').fadeOut()
.next('span').fadeIn()
.end().appendTo('.HeaderMsg1');
}, 5000);
我沒有能夠顯示在一前一後圖像上的文字時顯示的文本換行。 請幫助我。謝謝
如果這個想法是,你需要在每個「HeaderMsg」後間距,你應該添加一些CSS,使該類顯示爲塊,並給它一些尺寸和填充。根據你的描述,這個問題並不明顯,或者你有/沒有 – SpaceBison 2012-02-16 13:22:08
你的'
'可能無法正常工作,因爲你可能(取決於你的文檔類型)需要一個'
'。或者做@SpaceBison所說的並使用CSS,這是一種更清潔的方法。 – Chris 2012-02-16 13:37:58
@Chris - 如果沒有空格,
應該沒有問題。 – SpaceBison 2012-02-16 13:41:52