我有下面的代碼(在火箭主題Joomla網站),我似乎無法獲得Javascript刪除換行符,當我添加最後一個標記。這裏是腳本:如何將CSS span應用於沒有換行符的連接字符串?
<head>
<script type="text/javascript">
var d = new Date();
var date = d.getDate();
var day = d.getDay();
function schoolDay5(){
//weekNo = Math.ceil(date/7); //See bottom of the page to see how it works
if (date%2 == 0)
return 2;
else
return 1;
}
window.onload=function(){
var str= "<span class='promo1 ribbon'>" + "Welcome to Stephen Leacock it is day " + schoolDay5()+ "<span>";
document.getElementById('notice').innerHTML=str;
}
</script>
</head>
<body>
<div id="notice"></div>
</body>
當我運行這個我得到一個新的行上的最後一個標記。我怎麼才能讓這個腳本吐出一行?
下面是該結果的頁面:How it looks now
謝謝!完美工作... – 2012-08-05 23:38:25